/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
}

main {
    padding: 20px;
}

h2 {
    color: #333;
}

/* Toolbar styles */
.toolbar {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.toolbar input {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
}

.toolbar button {
    padding: 10px 20px;
    background-color: #1a73e8;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* File list styles */
.file-list {
    width: 100%;
    border-collapse: collapse;
}

.file-list td, .file-list th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.file-list tr:nth-child(even){background-color: #f2f2f2;}

.file-list tr:hover {background-color: #ddd;}

/* File item styles */
.file-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.file-item:last-child {
    border-bottom: none;
}

.file-item button {
    background-color: #1a73e8;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-left: 10px;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px;
    color: white;
    background-color: green;
    border-radius: 5px;
    z-index: 1000;
}

.notification.error {
    background-color: red;
}

/* All files section styles */
#allFiles {
    margin-top: 20px;
}

.file-box {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    background-color: #fff;
}

.file-box .file-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.file-box .file-item:last-child {
    border-bottom: none;
}

.file-box .file-item button {
    background-color: #1a73e8;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-left: 10px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Button styles */
.file-list button {
    padding: 5px 10px;
    margin-right: 5px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.file-list button i {
    margin-right: 5px;
}

.file-list button:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 600px) {
    .file-list button {
        padding: 3px 6px;
        font-size: 12px;
    }

    .file-list td, .file-list th {
        padding: 4px;
    }
}
