
      :root {
        --brand-primary: #0AA0CF;
        --brand-primary-light: rgba(10, 160, 207, 0.1);
        --brand-primary-lighter: rgba(10, 160, 207, 0.05);
        --brand-primary-dark: #0885a8;
        --border-color: #E2E8F0;
        --text-primary: #1E293B;
        --text-secondary: #64748B;
        --danger-color: #EF4444;
        --danger-light: rgba(239, 68, 68, 0.1);
        --success-color: #10B981;
        --radius-md: 8px;
        --radius-lg: 12px;
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
        
        body {
            background-color: #f5f7f9;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

            color: #333;
            line-height: 1.6;
        }

        /* job create */
        .sidebar {
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
            padding: 20px;
            margin-top: 100px;
        }
        
          .sidebar-title {
            color: var(--primary);
            font-weight: 600;
            margin-left: 50px;
        }

          .sidebar-divider {
            border-top: 2px dashed #e0e0e0;
            margin: 25px 0;
        }
        
        .sidebar-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .job-content {
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            
        }
        
        .step-list {
            counter-reset: step-counter;
            padding-left: 0;
        }
        
        .step-item {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            margin-bottom: 10px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .step-item::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background-color: #e9ecef;
            color: var(--secondary);
            border-radius: 50%;
            margin-right: 10px;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .step-item:hover {
            background-color: var(--primary-light);
            border-color: var(--primary);
        }
        
        .step-item.active {
            background-color: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary-dark);
            font-weight: 500;
        }
        
        .step-item.active::before {
            background-color: var(--primary);
            color: white;
        }
        
        .step-item.completed::before {
            content: '✓';
            background-color: #28a745;
            color: white;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .form-control, .form-select {
            padding: 10px 15px;
            border-radius: 6px;
            border: 1px solid #ced4da;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(10, 160, 207, 0.25);
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary:hover, .btn-primary:focus {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .btn-outline-secondary {
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 500;
        }
        
        .btn-link {
            color: #dc3545;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 20px;
        }
        
        .btn-link:hover {
            color: #bb2d3b;
            text-decoration: underline;
        }

       
        
        .section-title {
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
        }

        
        
        .nav-buttons {
            display: flex;
            gap: 10px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eaeaea;
        }
        
        .required-marker {
            color: #dc3545;
        }
        
      

         .note-icon {
        text-align: center;
        font-size: 95px;
        color: #0AA0CF;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

     .note-description {
        text-align: center;
        font-size: 1.1rem;
        color: #495057;
        margin-top: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }



/* Upgrade prompt */
.upgrade-prompt {
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, #f0f9ff 100%);
    border: 1px solid var(--brand-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.upgrade-prompt i {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.upgrade-prompt h5 {
    color: var(--brand-primary-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.upgrade-prompt p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.upgrade-btn {
    background: var(--brand-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.upgrade-btn:hover {
    background: var(--brand-primary-dark);
    transform: translateY(-2px);
}


        /* for application show */
         .app-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .page-header {
            /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
            background: linear-gradient(135deg, rgba(10, 160, 207, 0.15) 0%, #f8f9fa 100%);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: 0 8px 20px rgba(10, 160, 207, 0.2);
        }
        
        .back-btn {
            background-color: rgba(255, 255, 255, 0.2);
            border: none;
            transition: all 0.3s ease;
        }
        
        .back-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateX(-3px);
        }
        
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .card-header {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 1.2rem 1.5rem;
            border-top-left-radius: 12px !important;
            border-top-right-radius: 12px !important;
            font-weight: 600;
            color: var(--primary);
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            padding: 0.8rem;
            border-radius: 8px;
            background-color: var(--primary-light);
        }
        
        .info-icon {
            min-width: 36px;
            color: var(--primary);
            font-size: 1.2rem;
            padding-top: 0.2rem;
        }
        
        .info-content {
            flex: 1;
        }
        
        .section-title {
            position: relative;
            padding-left: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            color: var(--primary);
        }
        
        .section-title:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 24px;
            width: 6px;
            /* background-color: var(--primary); */
            border-radius: 3px;
        }
        
        .file-btn {
            border-radius: 6px;
            padding: 0.5rem 1rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        
        .question-badge {
            background-color: #e1f0ff;
            color: var(--primary);
            font-weight: 500;
            padding: 0.35rem 0.7rem;
            border-radius: 4px;
            font-size: 0.85rem;
        }
        
        .answer-box {
            background-color: #f8f9fa;
            border-left: 3px solid var(--primary);
            padding: 1rem;
            border-radius: 0 6px 6px 0;
            margin-top: 0.5rem;
        }
        
        .interviewer-notes {
            background-color: #fff8f5;
            border-left: 3px solid #ff6b4a;
        }
        
        .interviewer-notes .section-title:before {
            background-color: #ff6b4a;
        }
        
        .form-control, .form-select {
            border-radius: 6px;
            padding: 0.75rem 1rem;
            border: 1px solid #ddd;
        }
        
        .form-control:focus, .form-select:focus {
            box-shadow: 0 0 0 3px rgba(10, 160, 207, 0.2);
            border-color: var(--primary);
        }
        
        .btn-primary {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            background: linear-gradient(to right, var(--primary-dark), var(--primary));
        }
        
        .status-badge {
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 500;
        }
        
        .bg-primary-light {
            background-color: var(--primary-light);
        }
        
        .text-primary {
            color: var(--primary) !important;
        }
        
        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        @media (max-width: 768px) {
            .page-header {
                padding: 1.5rem;
            }
            
            .card {
                margin-bottom: 1.5rem;
            }
        }
