* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #3b82f6;
    --secondary-color: #1d4ed8;
    --background-color: #111827;
    --sidebar-color: #1f2937;
    --card-color: #1f2937;
    --text-color: #e5e7eb;
    --text-muted: #9ca3af;
    --border-color: #374151;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background-color: var(--sidebar-color);
    padding: 20px;
    box-shadow: none;
    border-right: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.ms-logo {
    width: 32px;
    height: 32px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
}

.employee-badge {
    font-size: 0.65rem;
    color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.main-content {
    flex: 1;
    padding: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: var(--card-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    animation: scaleIn 0.2s ease-out;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.settings-container {
    background-color: var(--card-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid var(--border-color);
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.monitoring-container {
    margin-top: 20px;
}

.metric {
    background-color: var(--card-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.progress-bar {
    background-color: var(--border-color);
    border-radius: 10px;
    height: 20px;
    margin-top: 10px;
    overflow: hidden;
}

.progress {
    background-color: var(--primary-color);
    height: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: width 0.3s ease;
}

h2, h3 {
    color: var(--text-color);
    margin-bottom: 20px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 30px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--card-color);
    padding: 10px 15px;
    border-radius: 8px;
    width: 300px;
}

.search-bar input {
    background: none;
    border: none;
    margin-left: 10px;
    color: var(--text-color);
    width: 100%;
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-bar i {
    color: var(--text-muted);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.notifications {
    position: relative;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
}

.user-profile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.user-profile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.user-profile i {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 5px;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    transform-origin: top right;
}

.profile-dropdown.active {
    display: block;
    animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.profile-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-header img {
    width: 50px;
    height: 50px;
}

.profile-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.profile-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.profile-email {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.profile-menu {
    padding: 10px;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.profile-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.profile-menu-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.profile-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 10px 0;
}

.text-danger {
    color: #ef4444 !important;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-dropdown.active {
    animation: fadeInDown 0.2s ease-out;
}

input:focus {
    outline: none;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.chart-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}

.chart-container {
    position: relative;
    height: 300px !important;
    width: 100% !important;
    margin: 15px 0;
}

.metric-value {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
}

.metric-change {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.metric-change.positive {
    color: #10b981;
}

.metric-change.negative {
    color: #ef4444;
}

.metric-value.danger {
    color: #ef4444;
}

.cert-list {
    margin-top: 15px;
}

.cert-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cert-item:last-child {
    border-bottom: none;
}

.cert-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.cert-details {
    flex: 1;
}

.cert-details h4 {
    margin: 0;
    color: var(--text-color);
}

.cert-details p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.status {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.status.valid {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.status.pending {
    background-color: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.vuln-summary {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.vuln-item {
    text-align: center;
}

.vuln-count {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.vuln-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.vuln-item.critical .vuln-count { color: #ef4444; }
.vuln-item.high .vuln-count { color: #f59e0b; }
.vuln-item.medium .vuln-count { color: #fbbf24; }
.vuln-item.low .vuln-count { color: #10b981; }

/* Profile Tab Styles */
.profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-header-card {
    background-color: var(--card-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 20px;
}

.profile-cover {
    height: 200px;
    background: linear-gradient(135deg, 
        #0ea5e9 0%,    /* Bright blue */
        #2563eb 50%,   /* Medium blue */
        #4f46e5 100%   /* Deep purple blue */
    );
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
}

.profile-cover::before {
    content: 'Microsoft Security Operations';
    position: absolute;
    bottom: 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.profile-avatar-section {
    background-image: url('image.png');
    background-size: 512px 110px;  /* Ensures the image covers the whole screen */
    background-position: 52%;
    background-repeat: no-repeat;
    filter: brightness(130%);
    padding: 20px 30px;
    margin-top: 0;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: -1;
}

.profile-avatar-section img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.profile-title {
    color: white;
    position: relative;
    z-index: 2;
}

.profile-title h3 {
    margin: 0;
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.profile-title span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.profile-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
}

.profile-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.profile-card h3 i {
    color: var(--primary-color);
}

.profile-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
}

.info-value {
    font-weight: 500;
}

.info-value.success {
    color: #10b981;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Document Section Styles */
.full-width {
    grid-column: 1 / -1;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.document-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.2s, background-color 0.2s;
}

.document-card:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.08);
}

.document-icon {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
}

.document-info p {
    margin: 5px 0 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.document-actions {
    display: flex;
    gap: 10px;
}

.doc-btn {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.2s;
}

.doc-btn:hover {
    background-color: rgba(59, 130, 246, 0.2);
}

.doc-btn i {
    font-size: 0.9rem;
}

/* Security Alert Styles */
.security-alert {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    animation: pulseAlert 2s infinite;
}

@keyframes pulseAlert {
    0% { border-color: #ef4444; }
    50% { border-color: #b91c1c; }
    100% { border-color: #ef4444; }
}

.alert-icon {
    font-size: 2rem;
    color: #ef4444;
    display: flex;
    align-items: center;
}

.alert-content h4 {
    color: #ef4444;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.alert-content p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.alert-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.alert-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.alert-btn.primary {
    background-color: #ef4444;
    color: white;
}

.alert-btn.primary:hover {
    background-color: #b91c1c;
}

.alert-btn:not(.primary) {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.alert-btn:not(.primary):hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Disabled Content Styles */
.disabled-content {
    position: relative;
    opacity: 0.15;
    pointer-events: none;
}

.disabled-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    z-index: 1;
    border-radius: 10px;
}

.disabled-content::after {
    content: 'Content locked for security reasons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(239, 68, 68, 0.95);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    z-index: 2;
    font-size: 1.1rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

/* Special handling for profile and monitoring sections */
#profile .disabled-content,
#monitoring .disabled-content {
    opacity: 0.1;
}

#profile .disabled-content::before,
#monitoring .disabled-content::before {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}

/* Add these to your security alert styles */
.verification-section {
    margin: 15px 0;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.code-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.code-input-container input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.code-input-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.verify-btn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.verify-btn:hover {
    background-color: var(--secondary-color);
}

.verification-message {
    margin: 10px 0 0;
    font-size: 0.9rem;
}

.verification-message.error {
    color: #ef4444;
}

.verification-message.success {
    color: #10b981;
}

/* Add animation for removing security alert */
.security-alert.removing {
    animation: slideUpFade 0.5s ease forwards;
}

@keyframes slideUpFade {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-20px);
        opacity: 0;
        height: 0;
        margin: 0;
        padding: 0;
    }
}

/* Add these styles for the warning-only alert variant */
.security-alert.warning-only {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    animation: none;
    margin-bottom: 20px;
}

.security-alert.warning-only .alert-icon {
    color: #f59e0b;
}

.security-alert.warning-only .alert-content h4 {
    color: #f59e0b;
}

/* Update the tab button styles when security alert is active */
.tab-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Add to your existing styles */
.text-warning {
    color: #f59e0b !important;
}

.profile-menu-item.text-warning:hover {
    background-color: rgba(245, 158, 11, 0.1);
}

/* Add animation for showing security alert */
.security-alert.showing {
    animation: slideDownFade 0.5s ease forwards;
}

@keyframes slideDownFade {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Add to your existing styles */
.update-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: normal;
}

.salary-chart {
    height: 200px;
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.salary-summary {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.salary-stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Microsoft Footer Styles */
.microsoft-footer {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--card-color);
    border-top: 1px solid var(--border-color);
    border-radius: 10px;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
}

.footer-logo i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer-logo span {
    font-weight: 500;
    color: var(--text-color);
}

.footer-info {
    flex: 1;
}

.footer-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Add this to ensure footer stays at bottom */
.tab-content {
    min-height: calc(100vh - 180px);
    display: none;
    position: relative;
    padding-bottom: 60px;
}

.tab-content.active {
    display: block;
}

/* Ensure footer doesn't get affected by disabled-content */
.microsoft-footer {
    position: relative;
    z-index: 3;
    opacity: 1 !important;
}

.disabled-content .microsoft-footer {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Modal Styles */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    backdrop-filter: blur(4px);
    display: none;
}

.modal-container.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    background-color: var(--card-color);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid var(--border-color);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-body {
    padding: 20px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.terms-section, .privacy-section, .trademark-section, .safety-section, .ads-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terms-section h4, .privacy-section h4 {
    color: var(--primary-color);
    margin-top: 20px;
}

.privacy-section ul, .ads-info {
    list-style: none;
    padding-left: 20px;
}

.privacy-section ul li, .ads-info li {
    margin-bottom: 10px;
    position: relative;
}

.privacy-section ul li::before, .ads-info li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -20px;
}

.trademark-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.trademark-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(59, 130, 246, 0.1);
    padding: 10px 15px;
    border-radius: 6px;
}

.trademark-symbol {
    color: var(--primary-color);
    font-weight: bold;
}

.eco-stats {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.eco-stats li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    color: #10b981;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aadhaar Modal Styles */
.aadhar-modal {
    max-width: 800px;
    background: linear-gradient(135deg, 
        #1a237e 0%,
        #0d47a1 50%,
        #01579b 100%
    );
}

.aadhar-body {
    padding: 30px;
}

.aadhar-card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    color: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.aadhar-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff9933;
    padding-bottom: 15px;
}

.aadhar-logo {
    height: 50px;
    margin-bottom: 10px;
}

.aadhar-header h3 {
    color: #000;
    font-size: 1.2rem;
    margin: 10px 0;
}

.aadhar-content {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.aadhar-photo {
    width: 150px;
    height: 150px;
    border: 2px solid #138808;
    padding: 3px;
}

.aadhar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aadhar-details {
    flex: 1;
}

.aadhar-field {
    margin-bottom: 15px;
}

.aadhar-field label {
    font-weight: bold;
    color: #000;
    margin-right: 10px;
}

.aadhar-field span {
    color: #333;
}

.aadhar-number {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.aadhar-number label {
    font-weight: bold;
    color: #000;
    margin-right: 10px;
}

.aadhar-number span {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #000;
}

.aadhar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #ff9933;
}

.aadhar-footer p {
    color: #000;
    font-size: 1rem;
}

.aadhar-qr {
    font-size: 2rem;
    color: #000;
}

/* Add these styles for the verified badge */
.document-icon {
    position: relative;
}

.verified-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--card-color);
}

.verified-badge i {
    font-size: 0.7rem;
    color: white;
}

/* Update document icon to accommodate badge */
.document-icon {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
}

/* Loading Animation Styles */
.tab-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 100;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.tab-loading p {
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Update tab content positioning */
.tab-content {
    position: relative;
    min-height: calc(100vh - 180px);
}

/* Ensure smooth transition between tabs */
.tab-content.active {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add these loading animation styles */
.tab-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tab-loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
    animation: loadingPulse 2s infinite;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loading-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes loadingPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Update Greeting Card Styles */
.greeting-card {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.1) 0%,
        rgba(79, 70, 229, 0.1) 100%
    );
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    display: none;
}

.greeting-card.show {
    display: block;
    animation: slideInDown 0.5s ease-out;
}

.greeting-content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.greeting-avatar {
    position: relative;
}

.greeting-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.greeting-avatar:hover img {
    transform: scale(1.05);
}

.greeting-avatar::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background-color: #10b981;
    border-radius: 50%;
    border: 3px solid var(--card-color);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.greeting-text {
    flex: 1;
}

.greeting-text h3 {
    font-size: 2rem;
    margin: 0 0 5px 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.greeting-text p {
    color: var(--text-muted);
    margin: 0 0 15px 0;
    font-size: 1.1rem;
}

.greeting-stats {
    display: flex;
    gap: 25px;
    margin-top: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    background: rgba(59, 130, 246, 0.2);
}

.stat-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.stat-item span {
    color: var(--text-color);
    font-weight: 500;
}

.greeting-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%,
        rgba(16, 185, 129, 0.2) 100%
    );
    padding: 12px 20px;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.greeting-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.greeting-badge i {
    color: #10b981;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
}

.greeting-badge span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Threat Detection Styles */
.threat-card {
    position: relative;
    padding-top: 50px;
}

.threat-status {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.threat-status.critical {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.threat-status.warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.threat-status.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.threat-status.info {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.threat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.threat-item.wide {
    grid-column: 1 / -1;
}

.recent-threats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.threat-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.threat-entry:hover {
    transform: translateX(5px);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
    );
}

.threat-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    min-width: 120px;
}

.threat-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    padding: 0 20px;
}

.threat-type, .threat-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.threat-type {
    font-weight: 500;
    color: var(--text-color);
}

.threat-location {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.threat-severity {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.threat-severity.critical {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.threat-severity.high {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.threat-severity.medium {
    background-color: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.threat-entry i {
    font-size: 1rem;
}

/* Add these styles for search functionality */
.no-results-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--text-muted);
    text-align: center;
    animation: fadeIn 0.3s ease-out;
}

.no-results-message i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.no-results-message p {
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Password Change Modal Styles */
.password-change-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.password-input input:focus {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

.toggle-password {
    position: absolute;
    right: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--text-color);
}

.password-requirements {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.password-requirements h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.password-requirements li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.password-requirements li i {
    font-size: 0.6rem;
}

.password-requirements li.valid {
    color: #10b981;
}

.password-requirements li.valid i {
    color: #10b981;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.change-password-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.change-password-btn:hover {
    background-color: var(--secondary-color);
}

/* Desktop App Alert Styles */
.desktop-alert-content {
    text-align: center;
    padding: 20px;
}

.desktop-alert-content .alert-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.desktop-alert-content h3 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.desktop-alert-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.email-verification {
    background-color: rgba(59, 130, 246, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.email-note {
    color: var(--primary-color) !important;
    font-weight: 500;
    margin-bottom: 15px !important;
}

.download-section {
    margin: 20px 0;
}

.ms-download-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ms-download-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.security-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(239, 68, 68, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.security-note i {
    color: #ef4444;
    font-size: 1.2rem;
}

.security-note p {
    color: #ef4444 !important;
    margin: 0 !important;
    font-size: 0.9rem;
}

.report-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.report-card.wide {
    grid-column: 1 / -1;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Update the chart container styles for Reports tab */
.reports-container .chart-container {
    height: 300px !important;
    width: 100%;
    position: relative;
    margin: 15px 0;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.report-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.report-card .chart-container {
    flex: 1;
    min-height: 300px;
}

.report-card h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-card h3 i {
    color: var(--primary-color);
}

/* Add Vulnerability Summary Styles */
.vulnerability-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.vuln-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.vuln-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 80px;
}

.vuln-stat.critical {
    background-color: rgba(220, 38, 38, 0.1);
}

.vuln-stat.high {
    background-color: rgba(234, 88, 12, 0.1);
}

.vuln-stat.medium {
    background-color: rgba(217, 119, 6, 0.1);
}

.vuln-stat.low {
    background-color: rgba(5, 150, 105, 0.1);
}

.vuln-stat.resolved {
    background-color: rgba(75, 85, 99, 0.1);
}

.stat-number {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.vuln-stat.critical .stat-number { color: #dc2626; }
.vuln-stat.high .stat-number { color: #ea580c; }
.vuln-stat.medium .stat-number { color: #d97706; }
.vuln-stat.low .stat-number { color: #059669; }
.vuln-stat.resolved .stat-number { color: #4b5563; }

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.total-vulnerabilities {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    margin-top: 15px;
}

.total-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.total-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Enhanced Recent Reports Styles */
.reports-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.report-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.report-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.report-icon.pdf {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.report-icon.excel {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.report-icon.word {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.report-info {
    flex: 1;
}

.report-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.report-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.4;
}

.report-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.report-date::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.7;
}

.download-btn {
    background: rgba(59, 130, 246, 0.1);
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn i {
    font-size: 1.2rem;
}

.download-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* Add hover effects for report icons */
.report-item:hover .report-icon.pdf {
    background: rgba(239, 68, 68, 0.25);
    transform: scale(1.05);
}

.report-item:hover .report-icon.excel {
    background: rgba(16, 185, 129, 0.25);
    transform: scale(1.05);
}

.report-item:hover .report-icon.word {
    background: rgba(59, 130, 246, 0.25);
    transform: scale(1.05);
}

/* Team Management Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.team-member-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.member-header {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-bottom: 1px solid var(--border-color);
}

.member-header img {
    width: 80px;
    height: 80px;
    border-radius: 20%;
    border: 3px solid var(--card-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-status {
    position: absolute;
    bottom: 15px;
    left: 85px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--card-color);
}

.member-status.online { background-color: #10b981; }
.member-status.away { background-color: #f59e0b; }
.member-status.busy { background-color: #ef4444; }

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin: 0;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.member-info .role {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 10px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.member-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.member-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Alumni Section Styles */
.alumni-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.alumni-section h2 {
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 1.8rem;
}

.alumni-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.alumni-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.alumni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.alumni-header {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(75, 85, 99, 0.1), rgba(107, 114, 128, 0.1));
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alumni-header img {
    width: 80px;
    height: 80px;
    border-radius: 20%;
    border: 3px solid var(--card-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.current-company {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
}

.current-company img {
    width: 16px;
    height: 16px;
    border: none;
    box-shadow: none;
}

.current-company span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.alumni-info {
    padding: 20px;
}

.alumni-info h3 {
    margin: 0;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.past-role {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.experience {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.company {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.company img {
    width: 24px;
    height: 24px;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.company-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.duration {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Add these to your existing team member styles */
.previous-company {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.previous-company img {
    width: 16px;
    height: 16px;
    border: none;
    box-shadow: none;
}

.previous-role {
    color: var(--text-muted);
    font-style: italic;
}

.previous-role i {
    color: #f59e0b;
}

/* Payment Tab Styles */
.payment-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.payment-card.wide {
    grid-column: 1 / -1;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr;  /* Change to single column */
    gap: 30px;  /* Increase gap between cards */
    margin-top: 30px;
}

/* Salary Overview Styles */
.salary-overview {
    padding: 25px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 15px;
}

.salary-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.current-salary {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.current-salary .label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.current-salary .amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.salary-change {
    text-align: right;
}

.change-amount {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
}

.change-amount.positive {
    color: #10b981;
}

.change-period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.salary-chart {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.salary-chart h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.salary-breakdown {
    margin-top: 30px;
}

.salary-breakdown h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.breakdown-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.breakdown-item.total {
    margin-top: 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.breakdown-item .item-label {
    color: var(--text-muted);
}

.breakdown-item .item-value {
    font-weight: 500;
    color: var(--text-color);
}

.breakdown-item.total .item-value {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Bank Account Styles */
.bank-account {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 20px;
}

.bank-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.bank-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.bank-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.bank-logo span {
    font-size: 1.2rem;
    font-weight: 500;
}

.account-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-item .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-item .value {
    font-weight: 500;
}

/* Card Styles */
.card-wrapper {
    perspective: 1000px;
    margin: 20px 0;
}

.card {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

.card:hover {
    transform: rotateY(5deg);
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border-radius: 8px;
    margin-bottom: 30px;
}

.card-number {
    font-size: 1.3rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: white;
}

.card-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.card-holder, .card-expiry {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-holder .label, .card-expiry .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.card-holder .value, .card-expiry .value {
    font-size: 0.9rem;
    color: white;
}

.card-type {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.card.debit {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.card.credit {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

/* Add these to your payment styles */
.verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-top: 5px;
}

.verified-tag.small {
    padding: 2px 4px;
    font-size: 0.7rem;
}

.verified-tag i {
    font-size: 0.8rem;
}

.salary-details {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.detail-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-item .label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.detail-item .value {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Update bank account and card styles to include verification badges */
.bank-account .detail-item,
.card-details .card-holder,
.card-details .card-expiry {
    position: relative;
}

.salary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.stat-item {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

/* New verification badge styles */
.ms-verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
}

.verified-icon {
    color: #10b981;
    font-size: 0.9rem;
    margin-left: 5px;
}

.verified-seal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.verified-seal i {
    font-size: 0.9rem;
}

/* Update card styles */
.card {
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    border-radius: 15px;
    padding: 25px;
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

/* Update detail item styles */
.detail-item .value {
    display: flex;
    align-items: center;
    gap: 5px;
}

.payment-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Update Kotak Card styles */
.card.kotak {
    background: linear-gradient(135deg, #1e2c54 0%, #2a3f7c 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card.kotak.credit {
    background: linear-gradient(135deg, #8b0d37 0%, #c41250 100%);
}

.bank-brand {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
}

.bank-brand img {
    height: 100%;
    width: auto;
}

.card-chip {
    margin-top: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
}

.card.kotak .card-number {
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
}

.card.kotak .card-details {
    margin-top: 20px;
}

.card.kotak .card-holder .value,
.card.kotak .card-expiry .value {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* Replace view-card-details with this new style */
.view-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Update the doc-btn styles for cards */
.card .doc-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
}

.card .doc-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card .doc-btn i {
    font-size: 1rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Add styles for bank view button */
.bank-view-btn {
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: 20px !important;
    background: rgba(59, 130, 246, 0.2) !important;
    color: var(--primary-color) !important;
    text-shadow: none !important;
}

.bank-view-btn:hover {
    background: rgba(59, 130, 246, 0.3) !important;
    transform: translateX(-50%) translateY(-2px) !important;
}

.bank-view-btn i {
    color: var(--primary-color) !important;
}

/* UPI Section Styles */
.upi-account {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 20px;
}

.upi-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.upi-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.upi-logo span {
    font-size: 1.2rem;
    font-weight: 500;
}

.upi-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-active {
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-active::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}

/* Update Payment Grid Layout */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* 2 columns */
    gap: 20px;  /* Space between cards */
    margin-top: 30px;
}

/* Update card styles */
.payment-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 0;  /* Remove bottom margin since grid handles spacing */
}

/* Make salary card full width */
.payment-card.wide {
    grid-column: 1 / -1;  /* Span full width */
}

/* Add some hover effects */
.payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Add these styles for the alert text */


.alert-text {
    
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

.alert-badge {
    
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 10px;
    letter-spacing: 1px;
    vertical-align: middle;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Update Payment Grid Layout */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;  /* Increased gap */
    margin: 40px 0;  /* Increased margin */
}

/* Update card styles */
.payment-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;  /* Increased padding */
    margin-bottom: 0;
}

/* Salary card styles */
.payment-card.wide {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

/* Card wrapper spacing */
.card-wrapper {
    margin: 25px 0;
}

/* Bank account spacing */
.bank-account {
    padding: 25px;  /* Increased padding */
    margin: 15px 0;
}

/* UPI section spacing */
.upi-account {
    padding: 25px;  /* Increased padding */
    margin: 15px 0;
}

/* Section headers */
.payment-card h3 {
    margin-bottom: 25px;  /* Increased margin */
    font-size: 1.3rem;  /* Slightly larger font */
}

/* Add some breathing room to details */
.detail-item {
    margin-bottom: 15px;
    padding: 10px 0;
}

/* Add spacing between sections */
.salary-overview {
    padding: 30px;  /* Increased padding */
}

.salary-stats {
    margin: 30px 0;  /* Increased margin */
}

.salary-breakdown {
    margin-top: 30px;
}

/* Updated Alert Modal Styles */
.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.alert-icon-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(239, 68, 68, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
}

.alert-text {
    color: #ef4444;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.alert-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    color: #f59e0b;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.alert-message {
    text-align: center;
    margin-bottom: 30px;
}

.alert-message h3 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.alert-message p {
    color: var(--text-muted);
    line-height: 1.6;
}

.access-requirements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(59, 130, 246, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.requirement i {
    font-size: 1.1rem;
}

.download-section {
    text-align: center;
    margin-bottom: 25px;
}

.ms-download-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ms-download-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.download-note {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.security-note {
    display: flex;
    gap: 15px;
    background: rgba(239, 68, 68, 0.1);
    padding: 15px;
    border-radius: 8px;
}

.security-note i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 3px;
}

.security-text h4 {
    color: #ef4444;
    margin-bottom: 5px;
    font-size: 1rem;
}

.security-text p {
    color: #ef4444;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Microsoft Wallet Styles */
.wallet-account {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 15px 0;
}

.wallet-balance {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 10px;
    margin-bottom: 20px;
}

.balance-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.balance-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.balance-type {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: inline-block;
}

.wallet-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 8px;
}

/* Wallet Transfer Options Styles */
.wallet-actions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.wallet-actions h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.transfer-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.transfer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
}

.transfer-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.transfer-icon.bank {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.transfer-icon.upi {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.transfer-icon.card {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.transfer-info {
    flex: 1;
}

.transfer-info h4 {
    margin: 0;
    font-size: 1rem;
    margin-bottom: 5px;
}

.transfer-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Update doc-btn style for transfer items */
.transfer-item .doc-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    border: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transfer-item .doc-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.transfer-item .doc-btn i {
    font-size: 0.9rem;
}

.age-tag {
    display: inline-block;
    font-size: 0.8rem;
    padding: 2px 8px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

.freelancer-tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 2px 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Projects Tab Styles */
.projects-header {
    text-align: center;
    margin-bottom: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.project-section {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
}

.project-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.project-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-status.ongoing {
    color: #3b82f6;
}

.project-status.upcoming {
    color: #f59e0b;
}

.project-status.completed {
    color: #10b981;
}

.project-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.project-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-progress {
    margin: 15px 0;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Progress Bar Styles */
.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 0.3s ease;
    text-align: center;
    font-size: 0.8rem;
    color: white;
    line-height: 8px;
}

/* Project Card Hover Effects */
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Social Media Section Styles */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.social-card {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.social-icon.github {
    background: rgba(36, 41, 46, 0.1);
    color: #ffffff; /* Change color to white for better visibility */
}

.social-icon.linkedin {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
}

.social-icon.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
}

.social-icon.discord {
    background: rgba(114, 137, 218, 0.1);
    color: #7289da;
}

.social-icon.telegram {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.social-info {
    flex: 1;
}

.social-info h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.social-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6; /* Brighter blue color for better visibility */
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(59, 130, 246, 0.1);
}

.social-link:hover {
    transform: translateX(5px);
    background: rgba(59, 130, 246, 0.2);
}

.social-card.private {
    opacity: 0.7;
}

.privacy-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ef4444;
    font-size: 0.9rem;
}

.privacy-notice i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* Working Time Tab Styles - Dark Theme */
.working-time-container {
    padding: 20px;
}

.working-time-header {
    margin-bottom: 24px;
}

.working-time-header h2 {
    color: var(--text-color);
    margin-bottom: 8px;
}

.working-time-header p {
    color: var(--text-muted);
}

.working-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Time Stat Cards */
.time-stat-card {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.time-stat-card:hover {
    transform: translateY(-2px);
}

.time-stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.time-stat-card .stat-info h3 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.time-stat-card .stat-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 4px;
}

.time-stat-card .stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Schedule Card */
.schedule-card.wide {
    grid-column: span 3;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.schedule-nav {
    display: flex;
    gap: 8px;
}

.schedule-btn {
    background: rgba(59, 130, 246, 0.1);
    border: none;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.schedule-btn:hover {
    background: rgba(59, 130, 246, 0.2);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day-header {
    text-align: center;
    font-weight: bold;
    color: var(--text-muted);
    padding: 8px;
}

/* Time Log Card */
.time-log-card.wide {
    grid-column: span 3;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.time-logs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-log-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.time-log-entry:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.log-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.log-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.log-time {
    font-weight: bold;
    color: var(--text-color);
}

.log-duration {
    font-size: 12px;
    color: var(--text-muted);
}

.log-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
}

.log-status.active {
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
}

.log-status.completed {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

/* Time Chart Card */
.time-chart-card.wide {
    grid-column: span 3;
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.time-chart-card .chart-container {
    height: 400px;  /* Increased height for better visibility */
    width: 100%;
    position: relative;
    margin-top: 20px;
    padding: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .working-time-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-card.wide,
    .time-log-card.wide,
    .time-chart-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .working-time-grid {
        grid-template-columns: 1fr;
    }

    .schedule-card.wide,
    .time-log-card.wide,
    .time-chart-card.wide {
        grid-column: span 1;
    }
}

/* Calendar Styles */
.schedule-month {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.schedule-month h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0;
}

.schedule-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.today-btn {
    padding: 8px 16px !important;
    background: var(--primary-color) !important;
    color: white !important;
}

.today-btn:hover {
    background: var(--secondary-color) !important;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    width: 100%;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.calendar-day .date {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

.calendar-day .hours {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.calendar-day.working {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.calendar-day.today {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.calendar-day.holiday {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.calendar-day.other-month {
    opacity: 0.5;
}

.schedule-legend {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.working {
    background: rgba(59, 130, 246, 0.5);
}

.legend-dot.today {
    background: rgba(16, 185, 129, 0.5);
}

.legend-dot.holiday {
    background: rgba(239, 68, 68, 0.5);
}

/* Update these calendar styles */
.schedule-grid {
    width: 100%;
    margin-top: 20px;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.day-header {
    text-align: center;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px;
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
    padding: 8px;
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.calendar-day .date {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 4px;
}

.calendar-day .hours {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.calendar-day.working {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.calendar-day.today {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.calendar-day.holiday {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.calendar-day.other-month {
    opacity: 0.5;
    background: rgba(255, 255, 255, 0.02);
}

/* Add these to your existing social card styles */
.social-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
    padding: 5px 10px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 5px;
}

.region-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.phone-number i,
.region-tag i {
    font-size: 0.9rem;
}

/* Add these animation keyframes at the end of styles.css */
@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Update existing components with animations */

/* Tab content transition */
.tab-content {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease-out;
}

.tab-content.active {
    opacity: 1;
    transform: translateX(0);
    animation: slideIn 0.3s ease-out forwards;
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Button hover animations */
.tab-btn, .action-btn, .doc-btn {
    transition: all 0.2s ease;
}

.tab-btn:hover, .action-btn:hover {
    transform: translateY(-2px);
}

/* Profile dropdown animation */
.profile-dropdown {
    transform-origin: top right;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.profile-dropdown.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Notification badge pulse */
.notification-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Chart animations */
.chart-container {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    will-change: opacity, transform;
}

.chart-container.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Modal animations */
.modal-container {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-container.active {
    opacity: 1;
}

.modal-content {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-container.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Agreement card animations */
.agreement-card {
    transition: all 0.3s ease;
}

.agreement-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Meeting card animations */
.meeting-card {
    transition: all 0.3s ease;
}

.meeting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Calendar day hover effect */
.calendar-day {
    transition: all 0.2s ease;
}

.calendar-day:hover {
    transform: scale(1.1);
    z-index: 1;
}

/* Loading spinner animation */
.loading-spinner {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Alert animations */
.security-alert {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Status badge animations */
.status-badge {
    transition: all 0.3s ease;
}

.status-badge:hover {
    transform: scale(1.1);
}

/* Navigation hover effects */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Form input animations */
.form-input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Button click animation */
.btn {
    transition: transform 0.1s ease;
}

.btn:active {
    transform: scale(0.95);
}

/* Add a default visible state for charts that haven't been processed yet */
.chart-container:not(.loaded) {
    opacity: 1;
    transform: none;
}

/* Command Prompt Styles */
.command-prompt-container {
    position: relative;
    min-height: 400px;
    background: var(--card-color);
    border-radius: 10px;
    margin: 20px;
    border: 1px solid var(--border-color);
    display: block; /* Ensure container is visible */
}

.terminal-header {
    background: #2d3748;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.terminal-title {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.terminal-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.terminal-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.terminal-btn.close:hover {
    background: #ef4444;
    color: white;
}

.terminal-window {
    background: #1a1a1a;
    padding: 20px;
    min-height: 400px;
    font-family: 'Consolas', monospace;
    display: flex;
    flex-direction: column;
}

.terminal-output {
    flex: 1;
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.prompt {
    color: #10b981;
    user-select: none;
}

.terminal-input {
    background: none;
    border: none;
    color: var(--text-color);
    font-family: 'Consolas', monospace;
    font-size: 0.9rem;
    flex: 1;
    outline: none;
}

.command-output {
    margin: 10px 0;
    color: var(--text-color);
}

.error-output {
    color: #ef4444;
}

.success-output {
    color: #10b981;
}

/* Terminal text animations */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

.typing-animation {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 1s steps(40, end);
}

/* Terminal cursor animation */
.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--text-color);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Terminal Tabs Styles */
.terminal-tabs {
    display: flex;
    background: #1a1a1a;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 10px 0;
}

.terminal-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
    margin-right: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.terminal-tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.terminal-tab-btn.active {
    background: #2d3748;
    color: var(--text-color);
}

.terminal-tab-btn i {
    font-size: 0.9rem;
}

/* Terminal Content Styles */
.terminal-content {
    display: none;
}

.terminal-content.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* PowerShell specific styles */
.terminal-header.powershell {
    background: #012456;
}

.terminal-window.powershell {
    background: #012456;
}

.terminal-window.powershell .prompt {
    color: #f7d12e;
}

/* Network Tools Styles */
.network-tools, .security-tools {
    padding: 20px;
    background: #1a1a1a;
    min-height: 400px;
}

.tool-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.tool-section h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.tool-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tool-btn i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Output Console Styles */
.network-output, .security-output {
    background: #000;
    border-radius: 8px;
    margin-top: 20px;
    overflow: hidden;
}

.output-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.output-header span {
    color: var(--text-color);
    font-size: 0.9rem;
}

.clear-output {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.clear-output:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.output-content {
    padding: 15px;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    font-family: 'Consolas', monospace;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* Scrollbar Styles for Output */
.output-content::-webkit-scrollbar {
    width: 8px;
}

.output-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.output-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.output-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Tool Output Animations */
.tool-output {
    opacity: 0;
    transform: translateY(10px);
    animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation for Tools */
.tool-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin: 10px 0;
}

.tool-loading::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-color);
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Add these styles for the Azure portal message */
.azure-portal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9); /* Darker background */
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.azure-portal-message {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    text-align: center;
    animation: scaleIn 0.3s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.azure-portal-message .azure-icon {
    font-size: 3rem;
    color: #0078d4;
    margin-bottom: 20px;
}

.azure-portal-message h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.azure-portal-message p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.azure-portal-btn {
    background: #0078d4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.azure-portal-btn:hover {
    background: #006cbe;
    transform: translateY(-2px);
}

.command-prompt-container {
    position: relative;
}

/* Update these styles for the command prompt container and overlay */
.command-prompt-container {
    position: relative !important;
    min-height: 400px !important;
    background: var(--card-color);
    border-radius: 10px;
    margin: 20px;
    border: 1px solid var(--border-color);
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.azure-portal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 1 !important;
    visibility: visible !important;
}

.azure-portal-message {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    text-align: center;
    animation: scaleIn 0.3s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 1 !important;
    visibility: visible !important;
}

/* Update these styles for better visibility */
#command-prompt {
    position: relative;
    min-height: 400px;
}

.command-prompt-container {
    position: relative !important;
    min-height: 400px !important;
    background: var(--card-color);
    border-radius: 10px;
    margin: 20px;
    border: 1px solid var(--border-color);
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
}

.azure-portal-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(8px);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000 !important;
    padding: 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 20px;
    border-radius: 10px;
}

.azure-portal-message {
    background: var(--card-color) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 30px !important;
    max-width: 500px !important;
    text-align: center !important;
    animation: scaleIn 0.3s ease-out !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1001 !important;
}

.leave-notice {
    background: linear-gradient(135deg, #ff6b6b10, #4ecdc410);
    border: 1px solid #ff6b6b30;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.leave-icon {
    background: #ff6b6b20;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leave-icon i {
    font-size: 24px;
    color: #ff6b6b;
}

.leave-content {
    flex: 1;
}

.leave-content h3 {
    color: #ff6b6b;
    margin: 0 0 10px 0;
}

.leave-content p {
    margin: 5px 0;
    color: #666;
}

.leave-return {
    font-style: italic;
    color: #888 !important;
}

.leave-details {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.leave-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.leave-stat i {
    color: #ff6b6b;
}
  