.btn-green{background: var(--green);}
.slick-slide .icon img{filter:invert(1);}
.how-work-box .icon img,.icons-black img{filter:invert(1);}
.login-box select {
    border: 1px solid var(--green);
}
.p-relative{position:relative;}
#verifyEmail,#ResendOTP{
    color: #000;
    text-align: right;
    font-size: 12px;
    cursor: pointer;
}

#emailLoader{
    position: absolute;
    width: 25px;
    right: 12px;
    top: -39px;
    display: none;
}
.alert-danger{
    background: #f78282;
    border-radius: 5px;
}
.sidebar {
  width: 250px;
  height: 100vh;
  background: #fff;
  border-right: 1px solid #e0e0e0;
  position: fixed;
  left: 0;
  top: 0;
  padding: 1rem;
}
.sidebar .logo {
  font-weight: 700;
  color: #007bff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.sidebar .nav-link {
  color: #333;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.sidebar .nav-link.active,
.sidebar .nav-link:hover {
  background-color: #007bff;
  color: #fff;
  border-radius: 6px;
}
.content {
  margin-left: 250px;
  padding: 2rem;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}
.stat-card h5 {
  font-weight: 600;
  color: #6c757d;
}
.stat-card h3 {
  font-weight: 700;
  color: #212529;
}
.chart-placeholder {
  background: #fff;
  border-radius: 12px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-weight: 500;
}
.account img{
    width: 54px;
    margin-right: 10px;
}
.modal{
    display: block;
    border: 2px solid #7bb000;
}
.modal-header{
    display: flex;
    background: #7bb000;
    color: #fff;
    padding: 0 15px;
    border-radius: 7px;
    line-height: 0;
    height: auto;
    padding-top: 5px;
    margin-bottom: 15px;
    position: relative;
}
.modal-header button{
    position: absolute;
    right: 4px;
    top: 8px;
    color: #f00;
}
.modal input,.modal select{
    border: 2px solid #7bb000;
    margin-bottom: 20px;
}
.modal .btn{
    background:#7bb000!important;
}
.pagination .page-link {
    width: 30px;
    height: 30px;
    font-size: 15px;
}

/*-----------------------Dashboard--------------------------------*/
/* Variables */
:root {
    --bg-light: #f8f8f8;
    --card-bg: #ffffff;
    --text-primary: #333;
    --text-secondary: #777;
    --border-color: #eee;
    --accent-yellow: #feda7e;
    --accent-pink: #ff9999;
    --accent-teal: #a5e3e2;
    --accent-purple: #9b59b6; /* For some darker element, if needed */
    --gradient-bg: linear-gradient(90deg, #ffedd5, #fefce8, #e0f2fe); /* Light, subtle gradient for overall bg */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --border-radius-card: 15px;
    --border-radius-sm: 8px;
    --font-family: 'Poppins', sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background: var(--gradient-bg);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to top */
    padding: 20px; /* Some padding around the entire dashboard */
}

/* Dashboard Container */
.dashboard-container {
    width: 100%;
    background: var(--bg-light);
    border-radius: var(--border-radius-card);
    overflow: hidden; /* To contain header shadows etc. */
    box-shadow: var(--shadow);
}

/* Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 20px;
}

.header-nav-icons .icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 5px;
    border-radius: var(--border-radius-sm);
    transition: background 0.2s ease;
}

.header-nav-icons .icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.search-bar {
    display: flex;
    align-items: center;
    background: #f0f2f5;
    border-radius: var(--border-radius-sm);
    padding: 5px 10px;
}

.search-bar input {
    border: none;
    background: transparent;
    padding: 5px;
    outline: none;
    font-family: var(--font-family);
    color: var(--text-primary);
}

.search-bar .icon-btn {
    font-size: 16px;
    padding: 0;
    color: var(--text-secondary);
}

.post-job-btn {
    background: var(--accent-purple);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

.post-job-btn:hover {
    background: #8e44ad;
}

.user-profile {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

/* Main Content */
.dashboard-main {
    padding: 30px;
}

.greeting {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-primary);
}

/* Metric Cards Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.metric-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-card);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    color: white; /* Default text color for these cards */
}

.metric-card.applicants {
    background: linear-gradient(45deg, #feda7e, #fdbf2d);
}

.metric-card.interview {
    background: linear-gradient(45deg, #ff9999, #ff6347);
}

.metric-card.profile-visited {
    background: linear-gradient(45deg, #a5e3e2, #66cdaa);
}

.metric-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}

.metric-card .value {
    font-size: 32px;
    font-weight: 700;
}

.metric-card .trend {
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}

.metric-card .trend.up {
    color: rgba(255, 255, 255, 0.9); /* Slightly different color for trend */
}


.metric-card .card-icon {
    font-size: 40px;
    opacity: 0.2;
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}


/* Dashboard Sections Grid */
.dashboard-sections-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Working Type + Overview on left, Applicants + Impressions on right */
    grid-template-rows: auto auto; /* Two rows */
    gap: 25px;
}

/* Specific grid areas for larger screens if desired for more control */
@media (min-width: 1024px) {
    .dashboard-sections-grid {
        grid-template-areas:
            "working-type applicants-list"
            "not-qualified impressions";
    }
    .working-type { grid-area: working-type; }
    .applicants-list { grid-area: applicants-list; }
    .not-qualified-overview { grid-area: not-qualified; }
    .impressions { grid-area: impressions; }
}

@media (max-width: 1023px) {
    .dashboard-sections-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }
}


/* General Card Styling */
.card {
    background: var(--card-bg);
    border-radius: var(--border-radius-card);
    padding: 25px;
    box-shadow: var(--shadow);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-actions {
    color: var(--text-secondary);
}

/* Working Type Card */
.working-type-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.type-list {
    flex-grow: 1;
}

.type-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.type-item:last-child {
    margin-bottom: 0;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.color-dot.nfd { background-color: var(--accent-yellow); }
.color-dot.fph { background-color: var(--accent-pink); }

.type-info p {
    font-weight: 500;
    color: var(--text-primary);
}
.type-info span {
    font-size: 13px;
    color: var(--text-secondary);
}

.donut-chart-placeholder {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.donut-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* Start segment from top */
}

.donut-ring {
    stroke: #eee;
}

.donut-segment {
    transition: stroke-dasharray 0.3s ease;
}

.donut-chart .segment-1 { stroke: var(--accent-yellow); }
.donut-chart .segment-2 { stroke: var(--accent-pink); }


.chart-center-text {
    text-align: center;
    z-index: 1; /* Ensure text is above SVG */
}

.chart-center-text p {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}
.chart-center-text span {
    font-size: 12px;
    color: var(--text-secondary);
}


/* Applicants List Card */
.applicants-list table {
    width: 100%;
    border-collapse: collapse;
}

.applicants-list th,
.applicants-list td {
    padding: 12px 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.applicants-list th {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.applicants-list td {
    font-size: 15px;
    color: var(--text-primary);
}

.applicants-list tbody tr:last-child td {
    border-bottom: none;
}

.applicant-photo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 5px;
}

/* Not Qualified Overview Card */
.not-qualified-overview {
    background: #2c3e50; /* Dark background as per design */
    color: white;
}

.not-qualified-overview .card-header h3 {
    color: white;
}

.not-qualified-overview .card-actions select {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family);
    cursor: pointer;
    outline: none;
}
.not-qualified-overview .card-actions select option {
    background: #2c3e50; /* For dropdown options */
    color: white;
}

.not-qualified-overview .chart-container {
    height: 150px; /* Adjust height for the chart */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* For charts */
}
.not-qualified-overview .chart-placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure the placeholder fits */
    filter: brightness(0.8) contrast(1.2); /* Adjust placeholder to fit dark theme */
}


/* Impressions Card */
.impressions .impressions-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.impressions .legend-item {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.impressions .legend-item::before {
    content: "●";
    margin-right: 5px;
    font-size: 16px;
    line-height: 1;
}

.impressions .legend-item.job-booster::before {
    color: var(--accent-teal); /* Example color */
}

.impressions .legend-item.job-alert::before {
    color: var(--accent-pink); /* Example color */
}

.impressions .chart-container {
    height: 200px; /* Adjust height for the chart */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* For charts */
}
.impressions .chart-placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Utility/Responsive */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 20px;
    }
    .header-right {
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    .search-bar {
        flex-grow: 1;
    }
    .dashboard-main {
        padding: 20px;
    }
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-sections-grid {
        grid-template-columns: 1fr;
    }
    .logo {
        margin-right: 0;
    }
    .header-nav-icons {
        width: 100%;
        justify-content: space-around;
    }
}

@media (max-width: 480px) {
    .greeting {
        font-size: 22px;
    }
    .post-job-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    .metric-card .value {
        font-size: 28px;
    }
    .metric-card h4 {
        font-size: 14px;
    }
    .applicants-list th,
    .applicants-list td {
        font-size: 13px;
    }
    .card {
        padding: 15px;
    }
    .card-header h3 {
        font-size: 18px;
    }
    .working-type-content {
        flex-direction: column;
        gap: 20px;
    }
    .donut-chart-placeholder {
        width: 100px;
        height: 100px;
    }
    .chart-center-text p {
        font-size: 18px;
    }
}

/* Working Type Card - Adjust for new canvas chart */
.working-type-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.donut-chart-container { /* New container for the donut chart and its center text */
    position: relative;
    width: 120px; /* Set a fixed size for the donut chart */
    height: 120px;
    display: flex; /* To center the text */
    justify-content: center;
    align-items: center;
}

#workingTypeDonutChart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important; /* Override Chart.js inline styles */
    height: 100% !important; /* Override Chart.js inline styles */
}

.chart-center-text {
    text-align: center;
    z-index: 1;
    position: relative; /* Make sure it's above the canvas */
    pointer-events: none; /* Allows clicks to pass through to canvas if needed */
}

/* ... rest of your existing CSS ... */

/* Adjusting chart placeholders for actual canvas elements */
.not-qualified-overview .chart-container,
.impressions .chart-container {
    height: 180px; /* Give canvases a fixed height */
}

/* No need for .chart-placeholder styles anymore for these sections if using canvas */
.not-qualified-overview .chart-placeholder,
.impressions .chart-placeholder {
    display: none; /* Hide the placeholder images */
}

/*----------------------------------------------Settings-----------------------------------------------------*/
/* Variables for Theme (dynamic) */
:root {
    --primary-color: #1a73e8; /* Default Blue */
    --accent-color: #00b894; /* Default Green-ish Accent */

    /* General Styling Variables */
    --bg-light: #f8f8f8;
    --card-bg: #ffffff;
    --text-primary: #333;
    --text-secondary: #777;
    --border-color: #eee;
    --input-border: #ddd;
    --input-focus-border: var(--primary-color);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --border-radius-card: 12px;
    --border-radius-sm: 6px;
    --font-family: 'Poppins', sans-serif;
    --success-color: #28a745;
    --error-color: #dc3545;
}

/* Base Styles (ensure Poppins is loaded, e.g., in main layout or here) */
body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Settings Container Layout */
.settings-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    background: var(--card-bg);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow);
    overflow: hidden; /* For rounded corners */
}

/* Settings Sidebar */
.settings-sidebar {
    width: 250px;
    padding: 30px;
    background-color: #fcfdff; /* Slightly lighter than card-bg */
    border-right: 1px solid var(--border-color);
    flex-shrink: 0;
}

.settings-sidebar-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.settings-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.settings-nav-item {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    transition: all 0.2s ease;
}

.settings-nav-item:hover {
    background-color: #f0f3f7;
    color: var(--green);
}

.settings-nav-item.active {
    background-color: var(--green);
    color: white;
    box-shadow: 0 4px 8px rgba(var(--green-rgb, 26, 115, 232), 0.2); /* Dynamic shadow */
}
/* Helper for dynamic RGB for shadow if primary color is hex */
.settings-nav-item.active[data-theme-primary="#1a73e8"] { --primary-color-rgb: 26, 115, 232; }
.settings-nav-item.active[data-theme-primary="#6c5ce7"] { --primary-color-rgb: 108, 92, 231; }
.settings-nav-item.active[data-theme-primary="#00b894"] { --primary-color-rgb: 0, 184, 148; }
.settings-nav-item.active[data-theme-primary="#e17055"] { --primary-color-rgb: 225, 112, 85; }


/* Settings Content Area */
.settings-content {
    flex-grow: 1;
    padding: 30px;
}

.settings-section {
    display: none; /* Hide all sections by default */
    padding-bottom: 30px; /* Space between sections */
}

.settings-section.active {
    display: block; /* Show active section */
}

.settings-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.section-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Form Styling */
.settings-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--input-border);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--text-primary);
    background-color: var(--bg-light);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--input-focus-border);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb, 26, 115, 232), 0.1);
}

/* Buttons */
.btn {
    padding: 12px 25px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--green);
    color: white;
}

.btn-primary:hover {
    background-color: color-mix(in srgb, var(--green) 85%, black);
}

.btn-secondary {
    background-color: #f0f2f5;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: #e0e2e5;
}

/* Checkbox Group */
.form-group.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.form-group.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--green); /* Colors the checkbox itself */
}
.form-group.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

/* Profile Avatar Upload */
.profile-avatar-upload {
    display: flex;
    align-items: center;
    gap: 20px;
}
.current-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}
.profile-avatar-upload input[type="file"] {
    display: none; /* Hide default file input */
}

/* Small text */
small {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Theme Palette Section */
.theme-option-group {
    margin-bottom: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}
.theme-option-group:first-of-type {
    border-top: none;
    padding-top: 0;
}

.theme-option-group h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.color-palette {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* For the gradient effect */
}

/* Specific swatch colors */
.color-swatch[data-theme-primary="#1a73e8"] { background: linear-gradient(45deg, #1a73e8, #00b894); }
.color-swatch[data-theme-primary="#6c5ce7"] { background: linear-gradient(45deg, #6c5ce7, #fdcb6e); }
.color-swatch[data-theme-primary="#00b894"] { background: linear-gradient(45deg, #00b894, #e17055); }
.color-swatch[data-theme-primary="#e17055"] { background: linear-gradient(45deg, #e17055, #6c5ce7); }
.color-swatch[data-theme-primary="#7bb001"] { background: linear-gradient(45deg, #7bb001, #7bb001); }


.color-swatch:hover {
    transform: scale(1.05);
}

.color-swatch.active {
    border-color: var(--green); /* Border highlights active swatch */
    box-shadow: 0 0 0 4px rgba(var(--primary-color-rgb, 26, 115, 232), 0.3);
}

/* Radio Group for density */
.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.radio-group input[type="radio"] {
    display: none; /* Hide default radio */
}

.radio-group label {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--input-border);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: normal;
    background-color: var(--bg-light);
    color: var(--text-secondary);
}

.radio-group input[type="radio"]:checked + label {
    background-color: var(--green);
    color: white;
    border-color: var(--green);
    box-shadow: 0 2px 5px rgba(var(--primary-color-rgb, 26, 115, 232), 0.2);
}

.radio-group label:hover {
    background-color: #e9ecef;
}
#skillSuggestionBox{
    position: absolute;
    z-index: 999;
    width: 200px;
    background: #fff;
    padding: 10px;
    border: 1px solid #000;
    box-shadow: 0 0 10px;
    top: 34px;
    left: 0;
    display:none;
}
#skillSuggestionBox a{
    width: 100%;
    display: block;
    padding: 2px 0;
    border-bottom: 1px dotted;
}
/* Responsive Adjustments */
@media (max-width: 900px) {
    .settings-container {
        flex-direction: column;
        margin: 20px;
    }
    .settings-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }
    .settings-sidebar-title {
        margin-bottom: 20px;
    }
    .settings-nav {
        flex-direction: row; /* Horizontal nav for mobile */
        overflow-x: auto; /* Scrollable if many items */
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch; /* Smoother scrolling for iOS */
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    .settings-nav::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari */
    }
    .settings-nav-item {
        flex-shrink: 0; /* Prevent items from shrinking */
        margin-right: 10px;
    }
    .settings-content {
        padding: 20px;
    }
    .profile-avatar-upload {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 500px) {
    .settings-container {
        margin: 10px;
    }
    .settings-sidebar, .settings-content {
        padding: 15px;
    }
    .settings-sidebar-title {
        font-size: 20px;
    }
    .settings-section h3 {
        font-size: 18px;
    }
    .color-swatch {
        width: 35px;
        height: 35px;
    }
}



/*my-css*/

.heading-panel {
    display: flex;
    position: relative;
}
.heading-panel h2 {
    font-size: 23px;
    font-family: var(--font-family);
}
section.job-details-section{margin-top: 25px;}
span.open_online {
    display: inline-block;
    background-color: #beffc4;
    width: 80px;
    height: 33px;
    text-align: center;
    line-height: 33px;
    color: #3f783b;
    border-radius: 50px;
    margin-left: 15px;
    box-shadow: 0px 0px 9px 3px #cedccfbf;
}
ul#pills-tab button {
    margin-left: 0px;
    margin: 15px 0;
}
.project-details-section {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
}
.top-section {
    display: flex;
    justify-content: space-between;
}
.left-heading-panel h3 {
    font-size: 19px;
    color: #000;
    font-family: var(--font-family);
}
.right-bidding-panel .usd {
    color: #000;
    font-size: 12px;
    display: inline-block;
}
.right-bidding-panel .usd {
    color: #000;
    font-size: 12px;
    display: inline-block;
    font-weight: 600;
    text-align: end;
    font-family: var(--font-family);
}
.right-bidding-panel {
    text-align: right;
}
.right-bidding-panel p {
    font-size: 12px;
    color: #000;
    font-weight: 500;
}
.right-bidding-panel i {
    margin-right: 5px;
    color: var(--green);
}
.middle-body-section{margin-top: 22px;}
.middle-body-section p {
    font-size: 13px;
    font-family: var(--font-family);
}
.middle-body-section h4 {
    font-size: 15px;
    font-family: var(--font-family);
    margin-top: 20px;
}
.skill-sec h3 {
    font-size: 19px;
    color: #000;
    font-family: var(--font-family);
    margin-top: 20px;
}
ul.skill-list {
    list-style: none;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
ul.skill-list li {
    border: 1px solid var(--green);
    padding: 4px 15px;
    margin-top: 8px;
    border-radius: 50px;
}
.project-id-section {
    display: flex;
    justify-content: space-between;
}
.project_id h5 {
    font-size: 13px;
}
.project-report p {
    font-weight: 500;
    font-family: var(--font-family);
}
.project-report i {
    margin-right: 5px;
    color: var(--green);
}
.bidd-top-heading h2 {
    font-size: 23px;
    font-family: var(--font-family);
}
.bidd-top-heading {
    margin-top: 20px;
}
.bidd-top-heading hr {
    margin: 10px 0;
}
.bidd-top-heading p {
    margin-bottom: 4px;
    font-family: var(--font-family);
}

/*abount-bid-sec*/
.bid-container {
  display: flex;
  gap: 25px;
  max-width: 800px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.field-box {
  flex: 1;
}

.field-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #222;
}

.bid-amount-sec .input-group {
  display: flex;
  border: 1px solid var(--green);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  height: 38px;
}

.bid-amount-sec .input-group span {
  background: #f2f2f2;
  padding: 8px 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--green);
}

.bid-amount-sec .input-group input,
.input-group select {
  border: none;
  padding: 0 10px;
  font-size: 14px;
  outline: none;
}

.bid-amount-sec .input-group input {
  flex: 1;
}

.bid-amount-sec .input-group select {
  border-left: 1px solid var(--green);
  background: #fafafa;
  cursor: pointer;
}
.field-box p {
    margin-top: 5px;
    font-family: var(--font-family);
}
.describe-sec h4 {
    font-size: 17px;
    color: #000;
    font-family: var(--font-family);
    margin-top: 20px;
}
.describe-sec textarea {
    width: 100%;
    margin-top: 5px;
    border: 1px solid var(--green);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}
hr {
    border: 1px solid #908c8c;
    margin-top: 0px;
}

/*verified-sec*/


.video-bid-box {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 0;
  font-family: Arial, sans-serif;
  max-width: 1000px;
  margin: auto;
}

.video-bid-text {
  flex: 2;
}

.video-bid-text h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-family);
}

.video-bid-text p {
  font-size: 12px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.4;
}

.video-bid-text strong {
  color: #000;
}

.verify-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.verify-link:hover {
  text-decoration: underline;
}

.btn-verify {
  padding: 8px 18px;
  background: #007bff;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  margin: 10px 0;
}

.btn-verify:hover { background: #005fcc; }

.small-note {
  font-size: 11px;
  color: #777;
  margin-top: 5px;
}

.video-bid-card {
  flex: 1.2;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
}

.profile {
  position: relative;
}

.profile img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #ccc;
  object-fit: cover;
}

.play-btn {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 50%;
}

.info h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 3px;
}

.info h4 span {
  font-weight: normal;
  color: #555;
}

.stars {
  font-size: 12px;
  color: #e91e63;
  font-weight: bold;
}

.stars span {
  color: #333;
  font-weight: 600;
}

.progress-bar {
  height: 6px;
  width: 100%;
  background: #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar div {
    width: 90%;
    height: 100%;
    background: var(--green);
}
hr {
    border: 1px solid #ccc;
    margin-top: 4px !important;
    margin-bottom: 4px !important;
}
.video-bid-text strong {
    color: #000;
    font-weight: 600;
}
.video-bid-text a {
    color: var(--green);
}
button.btn-verify {
    background-color: var(--green) ;
    font-weight: 600;
}
.payment-describe-sec h3 {
    font-size: 17px;
    color: #000;
    font-family: var(--font-family);
    margin-top: 20px;
}
.payment-describe-sec p {
    font-size: 13px;
    font-family: var(--font-family);
}

/*side-bar*/
.client-box {
    border: 1px solid var(--green);
    padding: 15px;
    border-radius: 6px;
    width: 260px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    box-shadow: 0px 0px 6px 5px #0000000f;
}

.client-title{
    font-size:14px;
    font-weight:600;
    margin-bottom:8px;
}

.client-row, .verify-row{
    display:flex;
    align-items:center;
    gap:5px;
    margin-bottom:6px;
    font-size:13px;
}

.flag{
    width:18px; height:12px;
    border-radius:2px;
}

.stars span{
    font-size:12px;
    margin-left:3px;
}

.upgrade-link {
    color: rgb(65 91 6);
    font-size: 13px;
    text-decoration: none;
    font-family: var(--font-family);
}
.upgrade-link:hover{
    text-decoration:underline;
    color: #000;
}

.mt{
    margin-top:12px;
}
.right-sidebar i {
    color: var(--green);
}
.verify-row {
    font-family: var(--font-family);
}
.client-row span {
    font-family: var(--font-family);
}

.user_section {
    display: flex;
    gap: 10px;
    margin: 20px 0 0 0;
}
.user_image img {
    border-radius: 5px;
    max-height: 77px;
}
.user_details h4 {
    font-size: 19px;
    font-family: var(--font-family);
    font-weight: 500;
}
i.fa-solid.fa-circle-check {
    margin-left: 6px;
    vertical-align: middle;
}
.proposal-section {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding-bottom: 20px;
    margin-bottom: 4px;
}
.stats-row{
  display:flex;
  gap:12px;
  align-items:center;
  font-family: var(--font-family);
  font-size:13px;
  color:#222;
}


.price {
    color: var(--green);
    font-size: 25px;
    font-weight: 600;
    font-family: var(--font-family);
}
.right_price_section {
    margin-top: 25px;
    text-align:right;
}

.stat.stars i{
  color: #abaaaa; 
  font-size:12px;
  margin-right:2px;
  line-height:1;
}


.stat .value{
  font-weight:600;
  font-size:13px;
  color:#111;
}

.stat.comments i{
  color:#ff9f1a;
  font-size:14px;
}

.stat.earnings i{
  color:#007a3d;
  font-size:13px;
}

.stat.success i{
  color:#2f9e44;
  font-size:12px;
}

.stat.country img{
  width:18px;
  height:12px;
  object-fit:cover;
  border-radius:2px;
  border:1px solid #e6e6e6;
}

@media (max-width:420px){
  .stats-row{ gap:8px; font-size:12px; }
  .stat .value{ font-size:12px; }
  .stat.stars i{ font-size:11px; }
}
.user_details h5 {
    font-size: 13px;
    color: #000;
    margin-top: 4px;
    font-family: var(--font-family);
}
.bottom-section {
    text-align: right;
}
.bottom-section h5 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0px;
}
a.bid_report {
    color: var(--green);
    margin-top: 4px;
    display: inline-block;
}
.bottom-section {
    margin-top: 25px;
}
.left-describe {
    margin-top: 14px;
}
.left-describe span{cursor: pointer;color:blue;text-decoration:underline;}
.left-describe p {
    font-size: 13px;
    font-family: var(--font-family);
}
img.colombia-flag {
    max-width: 20px;
}

.ck-editor__editable_inline {
    min-height: 400px; /* Adjust this value to your desired height (e.g., 600px) */
    max-height: 800px; /* Optional: Set a max height */
    overflow-y: auto; /* Ensures a scrollbar appears if content exceeds height */
}

/* Optional: If you want to increase the height of the Source Editing Textarea */
.ck-source-editing-area textarea {
    min-height: 400px; /* Ensure the source code view is also tall */
}
#addMilestone{
    border: 0;
    background: transparent;
    color: var(--green);
    font-weight: 700;
}
#addMilestone:disabled{
    color: #ccc;
}

/*-------------Overwrite card css for contents page------------------*/
.entries{}
.entries .card{
    padding: 0;
    margin-bottom: 25px;
}
.clarification-section{margin-top: 25px;}
.clarification-section .sidebar{
    position: relative;
    width: 100%;
    height: auto;
}

/*-------------Submit Entry Modal------------------*/
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.form-control::placeholder {
    color: #adb5bd;
    font-size: 0.9rem;
}
.text-muted-small {
    font-size: 0.75rem;
    color: #6c757d;
}
.upload-area {
    border: 2px dashed #dee2e6;
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    border-radius: 4px;
}
.upload-area .browse-btn {
    border: 1px solid #ced4da;
    background: #fff;
    padding: 6px 20px;
    font-size: 0.9rem;
    margin-top: 15px;
}
.promotion-row {
    border-top: 1px solid #eee;
    padding: 20px 0;
    display: flex;
    align-items: center;
}
.badge-highlight {
    background-color: #31d2f2;
    color: white;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    margin-right: 15px;
    min-width: 85px;
    text-align: center;
}
.badge-sealed {
    background-color: #35a2eb;
    color: white;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    margin-right: 15px;
    min-width: 85px;
    text-align: center;
}
.promo-desc {
    font-size: 0.85rem;
    flex-grow: 1;
}
.promo-price {
    font-weight: bold;
    font-size: 0.9rem;
}
.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0;
}
.total-section {
    margin-top: 40px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}
.submit-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    float: right;
}
#entry-tab{
    border: 0;
    font-size: 15px;
    color: #FFF;
    background: var(--green);
    padding: 7px 25px;
}
#entry .form-control{
    border-radius: 0;
    padding: 2px 10px;
    margin-bottom: 15px;
}
#entry .input-group span{
    height: 41px;
    padding: 0 10px;
}

/* ===========job-details-15-01-26============== */

*, p, h1, h2{
    margin: 0;
    padding: 0;
}
.job-details-top{
    padding: 30px 0;
        display: flex;
    justify-content: space-between;
}
.job-details-top h1{
    font-size: 24px;
}


.job-title span{
    background-color: #3fff0059;
    padding: 2px 10px 5px;
    border-radius: 20px;
    font-size: 16px;
    margin-left: 8px;
}
.bid-count-and-estimate{
        font-size: 22px;
    font-weight: 500;
}
.heading h2{
    font-size: 22px;
}
.bid-amount-range{
    font-size: 18px;
    font-weight: 500;
}
.time{
    font-size: 13px;
}
.time span{
    font-size: 12px;
}
.details-tab{
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
    padding: 25px;
}
.heading ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px;
}
.heading ul li{
    padding: 1px 11px;
    width: fit-content;
    border: 1px solid #000;
    text-align: center;
    border-radius: 20px;
}
.project-id-report p{
    font-size: 14px;
}
.nav-link:focus, .nav-link:hover, .nav-link{
    color: #000;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #7bb001;
}

.profile-card-outer{
    border-bottom: 1px solid #ccc;
}
.profile-card {
  display: flex;
    justify-content: space-between;
    gap: 15px;
    border-radius: 0;
    max-width: 900px;
}

.left .avatar {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
}

.middle {
  flex: 1;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.name-row h3 {
  margin: 0;
  font-size: 18px;
}

.username {
  font-weight: normal;
  color: #666;
}

.badge {
    font-size: 12px;
    border-radius: 50%;
    padding: 6px 4px;
}

.verified {
  background-color: #1da1f2;
}

.pro {
  color: #f4b400;
}

.stats {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  font-size: 14px;
  color: #444;
}

.stars {
  color: #f5a623;
}

.title {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.right {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.reply {
  font-size: 13px;
  color: #666;
}
.bid-price {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}
.bid-description{
    width: 75%;
}
.report {
  font-size: 13px;
  color: #0077ff;
  text-decoration: none;
}

.report:hover {
  text-decoration: underline;
}




.client-card h4 {
  margin: 0 0 10px;
  font-size: 17px;
}

.info p {
  margin: 6px 0;
  font-size: 14px;
}
.info img{
    width: 25px;
}
.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  margin: 10px 0;
}

.stars {
  color: #ccc;
  font-size: 16px;
}

.score {
  font-weight: bold;
}

.member {
  font-size: 13px;
  color: #555;
  margin-bottom: 14px;
}

.upgrade {
  font-size: 13px;
  color: #1a73e8;
  margin-bottom: 14px;
}

.verify {
  list-style: none;
  padding: 0;
  margin: 0;
}

.verify li {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  gap: 6px;
}



.bid-card {
  max-width: 900px;
  border-top: 1px solid #ddd;
  background: #fff;
}

.bid-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.note {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.bid-row {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.field {
  flex: 1;
}

.field label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 14px;
}

.input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.input-wrap input {
  border: none;
  padding: 8px;
  width: 100%;
  outline: none;
  font-size: 14px;
}

.currency,
.unit {
  padding: 8px 10px;
  background: #f5f5f5;
  font-size: 14px;
  border-left: 1px solid #ccc;
}

.currency {
  border-left: none;
  border-right: 1px solid #ccc;
}

.paid {
  font-size: 13px;
  color: #444;
  margin-top: 6px;
}

.proposal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.proposal label {
  font-weight: bold;
  font-size: 14px;
}

.ai-btn {
  background: #7bb001;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
}

.ai-btn:hover {
  background: #7bb001;
}

textarea {
  width: 100%;
  height: 120px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  resize: none;
  font-size: 14px;
}

.milestone-card {
  max-width: 900px;
  border-top: 1px solid #ddd;
  /* padding: 20px; */
  background: #fff;
}

.milestone-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.milestone-note {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

.milestone-head {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 6px;
}

.amount-label {
  width: 220px;
  text-align: left;
}

.milestone-row {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}

.milestone-input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.amount-wrap {
  width: 220px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.amount-wrap input {
  border: none;
  padding: 8px;
  width: 100%;
  font-size: 14px;
  outline: none;
}

.currency,
.unit {
  padding: 8px 10px;
  background: #f5f5f5;
  font-size: 14px;
  border-left: 1px solid #ccc;
}

.currency {
  border-left: none;
  border-right: 1px solid #ccc;
}

.add-milestone {
  background: none;
  border: none;
  color: #b0b0b0;
  font-size: 14px;
  cursor: not-allowed;
  padding: 0;
}
.country img{
    width: 25px;
}





.read-more {
  cursor: pointer;
}
.single-uplod{
    background: var(--green);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    border: 4px solid var(--green);
}
.single-uplod small{color: #fff;}
.single-uplod span{
    margin-left: auto;
    color: #F00;
    font-size: 19px;
    background: #fff;
    padding: 0 5px;
}











