.upload-form,
.folder-form,
.compress-form {
    background: #2a2a3e;
    padding: 20px;
    border-bottom: 1px solid #3a3a4e;
}

.upload-form.hidden,
.folder-form.hidden,
.compress-form.hidden {
    display: none;
}

.upload-form label,
.folder-form label,
.compress-form p {
    color: #e0e0e0;
    margin-bottom: 10px;
    display: block;
    font-size: 13px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
}

input[type="file"],
input[type="text"] {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #4a4a5e;
    border-radius: 6px;
    background: #1e1e2e;
    color: #e0e0e0;
    font-size: 13px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
}

input[type="file"]:focus,
input[type="text"]:focus {
    outline: none;
    border-color: #6366f1;
}

input[type="submit"] {
    padding: 10px 18px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.bulk-actions {
    background: #f59e0b;
    color: #1e1e2e;
    padding: 12px 20px;
    border-bottom: 1px solid #3a3a4e;
    display: none;
    font-weight: 500;
    font-size: 13px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.bulk-actions.show {
    display: block;
}

.bulk-actions button {
    background: #1e1e2e;
    color: #f59e0b;
    border: 1px solid #1e1e2e;
    padding: 6px 12px;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
}

.bulk-actions button:hover {
    background: #2a2a3e;
}

/* Permissions Editor Styling */
.permissions-form {
    background: #2a2a3e;
    color: #e0e0e0;
    padding: 40px;
    min-height: 100vh;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.permissions-form h1 {
    color: #e0e0e0;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 24px;
}

.permissions-form input[type="text"] {
    width: 200px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #4a4a5e;
    border-radius: 6px;
    background: #1e1e2e;
    color: #e0e0e0;
    font-size: 14px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.permissions-form input[type="text"]:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.permissions-form input[type="submit"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.permissions-form input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}