body {
    font-family: 'Nunito', sans-serif;
}

body {

    margin: 0;
    padding: 0;
    background-color: #1E3945;
}

.main-login {

    padding: 0;
}

.loginsection {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-logo img {
    height: 134px;
    width: 150px;
    object-fit: cover;
}

.train-tittle {
    font-family: Nunito;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 1%;

    vertical-align: middle;
    color: white;
}

.loginsection p {

    font-weight: 400;
    font-style: Regular;
    font-size: 17px;
    color: white;
    line-height: 160%;
    letter-spacing: 1%;
    vertical-align: middle;

}



.TrainHero-login-form-container {
    /* margin-bottom: 30px; */
    display: flex;
    flex-direction: column;
}

.TrainHero-login-form-label {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    color: white;
    line-height: 160%;
    letter-spacing: 1%;
    vertical-align: middle;
}

.TrainHero-login-form-input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: #D4D7E3;
    color: #000;
    font-size: 16px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.TrainHero-login-form-input::placeholder {
    color: #8897AD;
}

.TrainHero-login-form-input:focus {
    outline: none;
    background: #D4D7E3;

}

.TrainHero-login-btn {
    width: 100%;
    padding: 15px;
    background: #50BDE2;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.TrainHero-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* .img-section {
    background-image: url('./images/Art.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
} */

.art-image {
    display: block;
    max-width: 90%;
    height: auto;
    object-fit: cover;
}

.logo-content-section {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .img-section {
        display: none;
    }
}

@media (min-width: 200px) and (max-width: 768px) {
    .logo-content-section {
        justify-content: center !important;
        margin-top: 3rem;
    }

    .main-logo {
        display: flex;
        justify-content: center;
    }
}





.tainhero-dashboard-body {
    background-color: #1E3945;
    font-family: 'Arial', sans-serif;
}

.tainhero-dashboard-sidebar {
    background: transparent;
    min-height: 100vh;
    padding: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.tainhero-dashboard-logo {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dash-logo {
    width: 50%;
}

.tainhero-dashboard-logo-img {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.profile-image {
    height: 40px;
    object-fit: cover;
}

.tainhero-dashboard-nav {
    padding: 20px 40px;
}

.tainhero-dashboard-nav-item {
    margin-bottom: 5px;
}

.tainhero-dashboard-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 25px;
    gap: 20px;
}

.tainhero-dashboard-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.tainhero-dashboard-nav-link.active {
    background-color: white;
    color: #2c3e50;
    font-weight: 600;
}



/* Target the svg path inside active link */
.tainhero-dashboard-nav-link.active svg path {
    fill: #2c3e50 !important;
    transition: fill 0.3s ease;
}

.tainhero-dashboard-nav-icon {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.tainhero-dashboard-main {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 0;
    border-radius: 25px 0 0 27px !important;
}

.tainhero-dashboard-header {

    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tainhero-dashboard-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 10px;
}

.tainhero-dashboard-search {
    position: relative;
    width: 100%;
}

.tainhero-dashboard-search-input {
    border: none;
    background-color: #F5F3FF;
    padding: 10px 40px 10px 15px;
    border-radius: 25px;
    width: 100%;
}

.tainhero-dashboard-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
}

.form-control:focus {
    box-shadow: none;
    background-color: #F5F3FF;
}

.tainhero-dashboard-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tainhero-dashboard-notification {
    position: relative;
    background: none;
    border: none;
    color: #6c757d;
    font-size: 18px;
}

.tainhero-dashboard-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.tainhero-dashboard-content {
    padding: 30px;
}

.dashboard-welcome {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tainhero-dashboard-welcome {
    background: #50BCE3;
    border-radius: 20px;
    padding: 30px;
    color: white;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.tainhero-dashboard-welcome-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tainhero-dashboard-welcome-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
    display: flex;


}

.tainhero-dashboard-welcome-star {
    color: #FFD700;
    margin-right: 8px;
}

.dash-main {
    display: flex;
    justify-content: flex-end;
}

.dash-main-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
}

.tainhero-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tainhero-dashboard-stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid #0000001C;
}

.tainhero-dashboard-stat-title {
    font-size: 25px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.tainhero-dashboard-stat-value {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 20px;
}

.tainhero-dashboard-progress-circle {
    position: absolute;
    right: 25px;
    top: 60%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
}

.tainhero-dashboard-progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.tainhero-dashboard-progress-bg {
    fill: none;
    stroke: #FBBC04;
    stroke-width: 4;
}

.tainhero-dashboard-progress-fill {
    fill: none;
    stroke: #50BCE3;
    stroke-width: 4;
    stroke-dasharray: 150;
    stroke-dashoffset: 90;
    transition: stroke-dashoffset 0.5s ease;
}

.tainhero-dashboard-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

.tainhero-dashboard-badges {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tainhero-dashboard-badges-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.tainhero-dashboard-badge-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

.tainhero-dashboard-badge-item:last-child {
    border-bottom: none;
}

.tainhero-dashboard-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
    color: white;
}

.tainhero-dashboard-badge-starter {
    background: #50BCE3;
}

.tainhero-dashboard-badge-rising {
    background: #50BCE3;
}

.tainhero-dashboard-badge-info h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.tainhero-dashboard-badge-info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #6c757d;
}

.tainhero-dashboard-profile-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tainhero-dashboard-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 32px;
    font-weight: bold;
}

.tainhero-dashboard-profile-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.tainhero-dashboard-profile-btn {
    background: #50BDE3;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.tainhero-dashboard-profile-btn:hover {
    transform: translateY(-2px);
    background: #50BDE3;
    color: white;
}

.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .tainhero-dashboard-sidebar {
        min-height: auto;
    }

    .tainhero-dashboard-welcome-illustration {
        display: none;
    }

    .tainhero-dashboard-welcome-title {
        font-size: 24px;
    }

    .tainhero-dashboard-stats {
        grid-template-columns: 1fr;
    }

    .tainhero-dashboard-content {
        padding: 20px;
    }

    .tainhero-dashboard-header {
        padding: 15px 20px;
    }

    .tainhero-dashboard-search {
        max-width: 200px;
    }

    .tainhero-dashboard-nav {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .tainhero-dashboard-user-info {
        gap: 10px;
    }

    .tainhero-dashboard-search {
        display: none;
    }

    .tainhero-dashboard-nav-link {
        padding: 10px 15px;
    }

    .dash-main {
        justify-content: center;
    }
}

/* sidebar */
@media (min-width: 769px) {
    .menu-toggle-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .col-md-9 {
        width: 100%;
    }

    /* Hide sidebar on smaller screens */
    .sidebar-wrapper {
        position: fixed;
        left: -260px;
        top: 0;
        width: 260px;
        height: 100%;
        background: #1E3946;
        transition: left 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    /* When active, slide in */
    .sidebar-wrapper.active {
        left: 0;
    }

    /* Menu toggle button */
    .menu-toggle-btn {
        color: #000;
        border: none;
        font-size: 24px;
        cursor: pointer;
        border-radius: 4px;
    }

    /* Dark overlay when sidebar is open */
    body.sidebar-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 998;
    }
}




.drill-card-container {

    margin: 2rem auto;
}

.drill-card-item {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid #0000000D;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.drill-card-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.drill-card-primary {
    background: #D9F3FC;
    border: 1px solid #D9F3FC;
}

.drill-card-secondary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
}

.drill-card-header {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.drill-card-meta {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.drill-card-focus {
    font-size: 0.95rem;
    color: #495057;
    font-weight: 500;
}

.drill-card-btn {
    background: #14A66B;
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.drill-card-btn1 {
    background: #50BCE3;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.drill-card-btn:hover {

    transform: translateY(-1px);

}

.drill-card-btn:active {
    transform: translateY(0);
}

.drill-card-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.drill-card-info-section {
    flex: 1;
    min-width: 250px;
}

.drill-card-action-section {
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .drill-card-content-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .drill-card-action-section {
        text-align: center;
    }
}






.achievement-badges-container {}

.achievement-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.achievement-badge-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.achievement-badge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.achievement-badge-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.achievement-badge-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.achievement-badge-icon.icon-active {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
}

.achievement-badge-icon.icon-locked {
    background: linear-gradient(135deg, #e9ecef 0%, #ced4da 100%);
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

/* Badge Icon Shapes */
.achievement-badge-symbol {
    width: 40px;
    height: 40px;
    position: relative;
}

.achievement-badge-symbol.symbol-star {
    background: linear-gradient(45deg, #ff6b35 0%, #ffa500 100%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.achievement-badge-symbol.symbol-ribbon {
    background: linear-gradient(45deg, #ff8c00 0%, #ffd700 50%, #ff8c00 100%);
    border-radius: 4px;
    position: relative;
}

.achievement-badge-symbol.symbol-ribbon::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #ff8c00;
}

.achievement-badge-symbol.symbol-locked {
    background: #adb5bd;
    border-radius: 50%;
}

.achievement-badge-symbol.symbol-locked::before {
    content: '🔒';
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.achievement-badge-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.achievement-badge-status {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.achievement-badge-status.status-completed {
    color: #28a745;
}

.achievement-badge-status.status-locked {
    color: #adb5bd;
}

.achievement-progress-bar-wrapper {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.achievement-progress-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.achievement-progress-bar.progress-active {
    background: linear-gradient(90deg, #17a2b8 0%, #20c997 100%);
}

.achievement-progress-bar.progress-completed {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.achievement-progress-bar.progress-locked {
    background: #ced4da;
}

@media (max-width: 768px) {
    .achievement-badges-grid {
        grid-template-columns: 1fr;
    }

    .achievement-badges-container {
        margin: 1rem;
        padding: 1rem;
    }
}




.analytics-dashboard-container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.analytics-dashboard-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.analytics-time-selector {
    padding: 0.5rem 1rem;
    border: 2px solid #007bff;
    border-radius: 8px;
    background-color: white;
    color: #007bff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.analytics-time-selector:hover {
    background-color: #007bff;
    color: white;
}

.analytics-time-selector::after {
    content: '▼';
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.analytics-chart-container {
    background-color: #fafbfc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    position: relative;
}

.analytics-chart-wrapper {
    position: relative;
    height: 300px;
    width: 100%;
}

.analytics-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.analytics-metric-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.analytics-metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.analytics-metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.analytics-metric-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.analytics-y-axis-label {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .analytics-dashboard-container {
        margin: 1rem;
        padding: 1rem;
    }

    .analytics-chart-container {
        padding: 1rem;
    }

    .analytics-chart-wrapper {
        height: 250px;
    }

    .analytics-metrics-grid {
        grid-template-columns: 1fr;
    }

    .analytics-metric-number {
        font-size: 2.5rem;
    }
}

/* Custom dropdown styles */
.analytics-dropdown {
    position: relative;
    display: inline-block;
}

.analytics-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    z-index: 1000;
    margin-top: 0.5rem;
}

.analytics-dropdown-content a {
    color: #495057;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    border-radius: 6px;
    margin: 4px;
}

.analytics-dropdown-content a:hover {
    background-color: #f8f9fa;
}

.analytics-dropdown:hover .analytics-dropdown-content {
    display: block;
}







.profile-header-section {
    background: linear-gradient(90deg, #50BCE3 0%, #D4F4FF 100%);
;
    height: 120px;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.profile-main-container {
    margin: 50px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-user-info-wrapper {
    padding: 0 30px;
    position: relative;
    margin-top: 20px;
}

.profile-avatar-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.profile-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-username-display {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.profile-email-display {
    color: #7f8c8d;
    font-size: 14px;
    margin: 5px 0 20px 0;
}

.profile-edit-button {
    background: #4EBCE2;
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: absolute;
    right: 30px;
    top: 0;
}

.profile-edit-button:hover {
    background: #5DADE2;
    transform: translateY(-1px);
}

.profile-details-section {
    padding: 30px;
}

.profile-info-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.profile-field-label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.profile-field-input {
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;

}

.profile-info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.profile-field-label {
    font-weight: 600;
    color: #34495e;
    font-size: 14px;
    min-width: 120px;
}

.profile-field-value {
    color: #7f8c8d;
    font-size: 14px;
    text-align: right;
    flex: 1;
}

.profile-email-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #ecf0f1;
}

.profile-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.profile-email-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.profile-email-icon {
    width: 40px;
    height: 40px;
    background: #e3f2fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.profile-email-icon i {
    color: #2196f3;
    font-size: 18px;
}

.profile-email-details {
    flex: 1;
}

.profile-email-address {
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
}

.profile-email-timestamp {
    color: #95a5a6;
    font-size: 12px;
    margin: 2px 0 0 0;
}

.profile-add-email-button {
    background: none;
    border: none;
    color: #87CEEB;
    font-weight: 500;
    padding: 0;
    text-decoration: none;
    font-size: 14px;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.profile-add-email-button:hover {
    color: #5DADE2;
    text-decoration: underline;
}