﻿

    .candidate-dashboard {
        padding: 10px 0 30px;
    }

    .candidate-welcome {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .welcome-small {
        display: block;
        color: #6b7280;
        font-size: 13px;
        margin-bottom: 5px;
    }

    .candidate-profile-progress {
        background: #ffffff;
        border: 1px solid #e8edf3;
        border-radius: 14px;
        padding: 20px;
    }

    .candidate-stat-card {
        background: #ffffff;
        border: 1px solid #e8edf3;
        border-radius: 14px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        height: 100%;
    }

    .candidate-stat-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: #f1f5ff;
        color: #2563eb;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 21px;
    }

    .candidate-stat-card span {
        color: #6b7280;
        font-size: 13px;
    }

    .candidate-stat-card h3 {
        margin: 2px 0;
        font-size: 24px;
    }

    .candidate-stat-card small {
        color: #9ca3af;
        font-size: 11px;
    }

    .candidate-job-search {
        background: #ffffff;
        border: 1px solid #e8edf3;
        border-radius: 14px;
        padding: 16px;
    }

    .candidate-search-input {
        position: relative;
        height: 100%;
    }

        .candidate-search-input i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            z-index: 2;
        }

        .candidate-search-input .form-control {
            padding-left: 40px;
            min-height: 48px;
            border-radius: 9px;
        }

    .candidate-section-card {
        background: #ffffff;
        border: 1px solid #e8edf3;
        border-radius: 14px;
        padding: 20px;
    }

    .candidate-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        margin-bottom: 18px;
    }

    .candidate-job-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 0;
        border-bottom: 1px solid #edf0f3;
    }

        .candidate-job-item:last-child {
            border-bottom: 0;
        }

    .candidate-job-logo {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        background: #f1f5ff;
        color: #2563eb;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .candidate-job-info {
        min-width: 0;
        flex: 1;
    }

        .candidate-job-info p {
            font-size: 13px;
            margin-bottom: 8px !important;
        }

    .candidate-job-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

        .candidate-job-tags span {
            background: #f5f7fa;
            color: #6b7280;
            border-radius: 5px;
            padding: 4px 7px;
            font-size: 11px;
        }

    .candidate-job-action {
        flex-shrink: 0;
    }

    .candidate-profile-mini {
        text-align: center;
    }

        .candidate-profile-mini img {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 12px;
        }

    .candidate-quick-actions a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 0;
        border-bottom: 1px solid #edf0f3;
        text-decoration: none;
        color: #374151;
    }

        .candidate-quick-actions a:last-child {
            border-bottom: 0;
        }

        .candidate-quick-actions a > span {
            width: 38px;
            height: 38px;
            border-radius: 9px;
            background: #f1f5ff;
            color: #2563eb;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .candidate-quick-actions strong,
    .candidate-quick-actions small {
        display: block;
    }

    .candidate-quick-actions strong {
        font-size: 13px;
    }

    .candidate-quick-actions small {
        color: #9ca3af;
        font-size: 11px;
        margin-top: 2px;
    }

    .candidate-career-tip {
        background: #ffffff;
        border: 1px solid #e8edf3;
        border-radius: 14px;
        padding: 18px;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .career-tip-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: #fff7ed;
        color: #f59e0b;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 19px;
    }


    @media (max-width: 767px) {

        .candidate-welcome {
            align-items: flex-start;
            flex-direction: column;
        }

        .candidate-job-item {
            align-items: flex-start;
        }

        .candidate-job-action {
            display: none;
        }
    }
