/* Style de base pour le plugin Illustrateurs */

.illustrateur-register-form,
.illustrateur-login-form,
.illustrateur-dashboard {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.illustrateur-register-form h2,
.illustrateur-login-form h2,
.illustrateur-dashboard h2 {
    text-align: center;
    margin-bottom: 20px;
}

.illustrateur-register-form label,
.illustrateur-login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.illustrateur-register-form input[type="text"],
.illustrateur-register-form input[type="email"],
.illustrateur-register-form input[type="password"],
.illustrateur-register-form textarea,
.illustrateur-login-form input[type="email"],
.illustrateur-login-form input[type="password"],
.illustrateur-register-form input[type="file"],
.illustrateur-login-form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.illustrateur-register-form button,
.illustrateur-login-form button,
.upload-livre button {
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.illustrateur-register-form button:hover,
.illustrateur-login-form button:hover,
.upload-livre button:hover {
    background: #005177;
}

.illustrateur-dashboard h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.dashboard-menu {
    text-align: center;
    margin: 30px auto;
    padding: 10px 0;
}

.dashboard-menu a {
    display: inline-block;
    margin: 8px;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #f8f9fa;
    border: 1px solid #d1d1d1;
    border-radius: 6px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    transition: all 0.2s ease-in-out;
}

.dashboard-menu a:hover {
    background-color: #e2e6ea;
    border-color: #bcbcbc;
    color: #000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.dashboard-menu i {
    font-size: 17px;
    color: #555;
}