﻿
.dashboard-alerts-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Blue Alert Card */
.alert-card-blue {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.alert-icon-blue {
    background: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .alert-icon-blue svg {
        width: 28px;
        height: 28px;
        color: #00a8e8;
    }

.alert-content-blue {
    flex: 1;
}

.alert-header-blue {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.alert-title-blue {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.alert-description-blue {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* Yellow Alert Card */
.alert-card-yellow {
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.alert-icon-yellow {
    background: white;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-icon-blue i {
    font-size: 28px;
    color: #00a8e8;
}

.alert-icon-yellow i {
    font-size: 28px;
    color: #ffa726;
}

.stat-icon i {
    font-size: 20px;
}

.stat-icon-status i {
    color: #6b7280;
}

.stat-icon-views i {
    color: #3b82f6;
}

.stat-icon-completion i {
    color: #ef4444;
}

/* Profile Sections Grid */
.profile-sections-wrapper {
    background: white;
    border-radius: 16px;
    padding: 24px;
    /*margin-top: 30px;*/
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profile-sections-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.profile-sections-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.profile-sections-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-preview {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

    .btn-preview:hover {
        background: #f9fafb;
    }

.btn-republish {
    background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-republish:hover {
        background: linear-gradient(135deg, #0096c7 0%, #0077b6 100%);
    }

.profile-sections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.profile-section-card {
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

  

.section-status-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon-complete {
    color: #10b981;
    font-size: 20px;
}

.status-icon-warning {
    color: #fbbf24;
    font-size: 20px;
}

.section-icon-wrapper {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

    .section-icon-wrapper i {
        font-size: 20px;
        color: #00b4d8;
    }

.section-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.section-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
}

.section-progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.section-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00b4d8 0%, #0096c7 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-progress-notfill {
    height: 100%;
    background: #FBBF24;
    border-radius: 2px;
    transition: width 0.3s ease;
}
/* Right Sidebar */
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Quick CV Upload */
.quick-upload-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.quick-upload-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.upload-area {
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 32px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .upload-area:hover {
        background: #f3f4f6;
        border-color: #00b4d8;
    }

.upload-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

    .upload-icon i {
        font-size: 24px;
        color: #00b4d8;
    }

.upload-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.upload-size {
    font-size: 11px;
    color: #9ca3af;
}

/* Notifications Card */
.notifications-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom:30px;
}

.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.notifications-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.mark-read-link {
    font-size: 12px;
    color: #00b4d8;
    text-decoration: none;
    cursor: pointer;
}

    .mark-read-link:hover {
        text-decoration: underline;
    }

.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background 0.3s ease;
}

    .notification-item:hover {
        background: #f9fafb;
    }

.notification-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.notification-dot-orange {
    background: #ff9800;
}

.notification-dot-blue {
    background: #00b4d8;
}

.notification-dot-green {
    background: #10b981;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.notification-description {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 4px;
}

.notification-time {
    font-size: 11px;
    color: #9ca3af;
}

/* Recent Projects & View History */
.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.section-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header-icon {
    color: #00b4d8;
    font-size: 20px;
}

.section-header-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.section-header-link {
    font-size: 12px;
    color: #00b4d8;
    text-decoration: none;
    cursor: pointer;
}

    .section-header-link:hover {
        text-decoration: underline;
    }

.project-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background 0.3s ease;
}

    .project-item:hover {
        background: #f9fafb;
    }

.project-icon {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .project-icon i {
        font-size: 16px;
        color: #6b7280;
    }

.project-content {
    flex: 1;
}

.project-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.project-meta {
    font-size: 11px;
    color: #6b7280;
}


.history-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
}

    /* The vertical line */
    .history-item::before {
        content: "";
        position: absolute;
        left: 11px;
        top: 0;
        bottom: -20px;
        width: 2px;
        background-color: #e0e0e0;
    }

    /* Remove line after last item */
    .history-item:last-child::before {
        display: none;
    }

/* The dot */
.history-dot {
    width: 10px;
    height: 10px;
    background-color: #00b4d8;
    border-radius: 50%;
    position: absolute;
    left: 7px;
    top: 0px;
    z-index: 1;
}

/* Content spacing */
.history-content {
    padding-left: 12px;
}

.history-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.history-meta {
    font-size: 12px;
    color: #777;
}
/* Layout */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 405px;
    gap: 0;
    margin-top: 30px;
}

.main-content {
    display: flex;
    flex-direction: column;
}

.alert-content-yellow {
    flex: 1;
}

.alert-title-yellow {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.alert-message-yellow {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.alert-actions-yellow {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-fix-issues {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-fix-issues:hover {
        background-color: #f57c00;
    }

.btn-dismiss {
    background-color: rgba(0, 0, 0, 0.05);
    color: #6b7280;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-dismiss:hover {
        background-color: rgba(0, 0, 0, 0.10);
    }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top:30px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-status {
    background: #f3f4f6;
}

.stat-icon-views {
    background: #eff6ff;
}

.stat-icon-completion {
    background: #fef3f2;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-label-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.stat-label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.action-badge {
    background: #fef3c7;
    /*color: #92400e;*/
    font-size: 11px;
    /*font-weight: 700;*/
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .action-badge::before {
        content: '●';
        font-size: 8px;
    }

.stat-value {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-subtext {
    color: #6b7280;
    font-size: 13px;
}

.stat-increase {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
}

/* Completion Circle */
.completion-circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.completion-card-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.completion-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

    .completion-circle svg {
        transform: rotate(-90deg);
    }

.completion-circle-bg {
    fill: none;
    stroke: #f3f4f6;
    stroke-width: 12;
}

.completion-circle-progress {
    fill: none;
    stroke: #ff9800;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 283;
    /*stroke-dashoffset: 42.45;*/
    transition: stroke-dashoffset 0.5s ease;
}

.completion-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .profile-sections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .alert-card-blue,
    .alert-card-yellow {
        padding: 20px;
        flex-direction: column;
    }

    .alert-icon-blue,
    .alert-icon-yellow {
        width: 48px;
        height: 48px;
    }

    .alert-title-blue,
    .alert-title-yellow {
        font-size: 16px;
    }

    .alert-description-blue,
    .alert-message-yellow {
        font-size: 13px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 32px;
    }

    .profile-sections-grid {
        grid-template-columns: 1fr;
    }

    .profile-sections-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-preview,
    .btn-republish {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .alert-card-blue,
    .alert-card-yellow {
        padding: 16px;
        border-radius: 12px;
    }

    .stat-card {
        padding: 18px;
    }

    .btn-fix-issues,
    .btn-dismiss {
        width: 100%;
    }
}


.form-control{
    line-height:1.5 !important;
}
.modal{
    backdrop-filter:blur(4px)
}