/* Advisor Multiple Profiles - Stylish Hot Pink, Black, and White Theme */

/* General Styling */
.amp-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    color: #333333;
}

.amp-heading {
    font-size: 24px;
    font-weight: bold;
    color: #ff69b4; /* Hot Pink */
    margin-bottom: 20px;
    text-align: center;
}

.amp-form {
    margin-bottom: 30px;
}

.amp-form label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
}

.amp-form input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 2px solid #ff69b4; /* Hot Pink */
    border-radius: 5px;
    margin-bottom: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.amp-form input[type="text"]:focus {
    border-color: #000000;
}

.amp-button {
    background-color: #ff69b4; /* Hot Pink */
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.amp-button:hover {
    background-color: #e60073; /* Darker Hot Pink */
}

.amp-profiles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amp-profiles-list li {
    background-color: #f8f8f8;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e0e0e0;
}

.amp-profiles-list li a {
    color: #ff69b4; /* Hot Pink */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.amp-profiles-list li a:hover {
    color: #e60073; /* Darker Hot Pink */
}

.amp-switcher-form {
    margin-top: 20px;
}

.amp-switcher-form select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 2px solid #ff69b4; /* Hot Pink */
    border-radius: 5px;
    margin-bottom: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.amp-switcher-form select:focus {
    border-color: #000000;
}

.amp-switch-back-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.amp-switch-back-button:hover {
    background-color: #333333; /* Darker Black */
}

.amp-hint {
    font-size: 14px;
    color: #666666;
    margin-top: 10px;
    text-align: center;
}

/* Error and Success Messages */
.amp-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

.amp-message.error {
    background-color: #ffe6e6;
    border: 1px solid #ff4d4d;
    color: #cc0000;
}

.amp-message.success {
    background-color: #e6ffe6;
    border: 1px solid #4dff4d;
    color: #009900;
}