/* User Profile Styles */

.aimarker-user-profile-container {
    flex: 1;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.aimarker-user-profile-container h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    border-radius: var(--aimarker-normal-border-radius);
}

.form-group input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

.aimarker-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.aimarker-btn:hover {
    background-color: #005a87;
}

.aimarker-btn-secondary {
    background-color: #666;
}

.aimarker-btn-secondary:hover {
    background-color: #555;
}

.aimarker-message {
    padding: 12px;
    margin: 15px 0;
    border-radius: 4px;
    display: none;
}

.aimarker-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.aimarker-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.aimarker-logout-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

#aimarker-profile-message {
    margin-top: 15px;
}