/* Simple User Files Styles */

.suf-login-container, .suf-register-container, .suf-dashboard-container {
    max_width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.suf-form h3 {
    margin-top: 0;
    text-align: center;
}

.suf-form p {
    margin-bottom: 15px;
}

.suf-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.suf-form input[type="text"],
.suf-form input[type="email"],
.suf-form input[type="password"],
.suf-form input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.suf-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.suf-form input[type="submit"]:hover {
    background-color: #005177;
}

.suf-error {
    color: red;
    background: #ffe6e6;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.suf-success {
    color: green;
    background: #e6ffe6;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

/* Dashboard specific */
.suf-dashboard-container {
    max_width: 800px;
}

.suf-file-list {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

.suf-file-list th {
    background-color: #f2f2f2;
}
