/* ShramikSetu Plugin Styles - Enhanced with Bolder Headings */
.shramiksetu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Poppins', 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f7f2; /* Light beige background */
    background-image: url('images/rural-pattern-light.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: overlay;
}

/* Language switcher styles */
.language-switcher {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    position: relative;
}

.language-dropdown {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 700; /* Made bolder */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.language-dropdown:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.language-dropdown:after {
    content: "▼";
    font-size: 0.7em;
    margin-left: 8px;
    color: #4CAF50;
    font-weight: 900; /* Made bolder */
}

.language-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
}

.language-dropdown-content.show {
    display: block;
}

.language-option {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: #333;
    transition: background-color 0.2s;
    cursor: pointer;
    font-weight: 600; /* Made bolder */
}

.language-option:hover {
    background-color: #f5f5f5;
}

.language-option.active {
    background-color: #e8f5e9;
    color: #4CAF50;
    font-weight: 800; /* Made even bolder */
}

.language-flag {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    vertical-align: middle;
}

.shramiksetu-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.shramiksetu-header h1 {
    color: #4CAF50; /* Green color */
    font-size: 3.5rem; /* Increased font size */
    margin-bottom: 5px;
    font-weight: 900; /* Made bolder */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

.shramiksetu-header p {
    color: #6b7280;
    font-size: 1.3rem;
    font-weight: 600; /* Made bolder */
}

/* Language switcher */
.language-switcher {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.language-switcher button {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700; /* Made bolder */
}

.language-switcher button.active {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
    font-weight: 800; /* Made even bolder */
}

.shramiksetu-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* Pill-style toggle */
.form-switch {
    padding-left: 2.5em;
    background-color: #f0f0f0;
    border-radius: 50px;
    padding: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.form-check-input {
    width: 3em;
    height: 1.5em;
    margin-top: 0.25em;
    cursor: pointer;
    border-radius: 50px;
    background-color: #3498db;
    border: none;
}

.form-check-input:checked {
    background-color: #e74c3c;
}

.form-check-label {
    display: flex;
    justify-content: space-between;
    width: 300px;
    font-weight: 800; /* Made bolder */
    cursor: pointer;
    padding: 10px 15px;
}

.toggle-job-seeker {
    color: #3498db;
    margin-right: 10px;
    display: flex;
    align-items: center;
    font-weight: 800; /* Made bolder */
}

.toggle-job-seeker:before {
    content: "🔍 ";
    margin-right: 5px;
}

.toggle-employer {
    color: #e74c3c;
    margin-left: 10px;
    display: flex;
    align-items: center;
    font-weight: 800; /* Made bolder */
}

.toggle-employer:before {
    content: "📢 ";
    margin-right: 5px;
}

.shramiksetu-forms {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.shramiksetu-forms h2 {
    color: #4CAF50;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 900; /* Made bolder */
    font-size: 2.5rem; /* Added font size */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15); /* Added shadow */
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800; /* Made much bolder */
    color: #2c3e50; /* Darker color for better contrast */
    font-size: 1.1rem; /* Slightly larger */
}

.form-group label:before {
    margin-right: 8px;
    font-weight: 900; /* Made bolder */
}

.form-group.job-title label:before { content: "🧱"; }
.form-group.company-name label:before { content: "🏭"; }
.form-group.job-description label:before { content: "📋"; }
.form-group.job-type label:before { content: "💼"; }
.form-group.job-location label:before { content: "📍"; }
.form-group.salary-range label:before { content: "💰"; }
.form-group.experience label:before { content: "📊"; }
.form-group.deadline label:before { content: "🗓️"; }
.form-group.contact label:before { content: "📞"; }
.form-group.skills label:before { content: "🔧"; }

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-weight: 500; /* Made bolder */
}

.form-control:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.range-slider {
    padding: 15px 0;
}

.range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 1rem;
    color: #6c757d;
    font-weight: 700; /* Made bolder */
}

input[type="range"] {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #e9ecef;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

#jobSearchResults, #jobPostResult {
    margin-top: 30px;
}

.job-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #4CAF50;
    transition: transform 0.2s;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-card h3 {
    color: #4CAF50;
    margin-bottom: 8px;
    font-weight: 900; /* Made much bolder */
    font-size: 1.8rem; /* Added font size */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Added shadow */
}

.job-card h4 {
    color: #7f8c8d;
    font-size: 1.3rem; /* Increased font size */
    margin-bottom: 15px;
    font-weight: 700; /* Made bolder */
}

.job-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.job-details p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-weight: 600; /* Made bolder */
}

.job-details p:before {
    margin-right: 8px;
    font-weight: 900; /* Made bolder */
}

.job-details .job-type:before { content: "💼"; }
.job-details .job-location:before { content: "📍"; }
.job-details .job-salary:before { content: "💰"; }
.job-details .job-experience:before { content: "📊"; }
.job-details .job-deadline:before { content: "🗓️"; }

.job-description {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.job-description h5 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-weight: 800; /* Made bolder */
    display: flex;
    align-items: center;
    font-size: 1.4rem; /* Added font size */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Added shadow */
}

.job-description h5:before {
    content: "📋";
    margin-right: 8px;
    font-weight: 900; /* Made bolder */
}

/* Increase font size for job description text */
.job-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500; /* Made bolder */
}

/* Also increase font size for the textarea where visitors enter the description */
#job_description {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500; /* Made bolder */
}

.no-jobs-found {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    color: #6c757d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600; /* Made bolder */
}

.skill-tag {
    display: inline-block;
    background-color: #e8f5e9;
    padding: 8px 15px;
    border-radius: 50px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #4CAF50;
    border: 1px solid #c8e6c9;
    font-weight: 700; /* Made bolder */
}

.skill-tag .remove-skill {
    margin-left: 8px;
    cursor: pointer;
    color: #e53935;
    font-weight: 800; /* Made bolder */
}

.alert {
    margin-top: 25px;
    border-radius: 10px;
    padding: 15px 20px;
    font-weight: 600; /* Made bolder */
}

.btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 800; /* Made much bolder */
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase; /* Added for more emphasis */
    letter-spacing: 0.5px; /* Added for better readability */
}

.btn-primary {
    background-color: #4CAF50;
    border: none;
    color: white;
}

.btn-primary:hover {
    background-color: #388e3c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.add-skill-btn {
    background-color: #f0f7ff;
    color: #3498db;
    border: 1px dashed #3498db;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700; /* Made bolder */
}

.add-skill-btn:hover {
    background-color: #e1f0fe;
}

@media (max-width: 768px) {
    .job-details {
        grid-template-columns: 1fr;
    }
    
    .form-check-label {
        width: 250px;
    }
    
    .shramiksetu-header h1 {
        font-size: 2.2rem;
        font-weight: 900; /* Made bolder */
    }
    
    .btn {
        width: 100%;
        padding: 15px;
        font-size: 1.1rem;
        font-weight: 800; /* Made bolder */
    }
    
    .form-control {
        padding: 15px;
        font-size: 1.1rem;
        font-weight: 500; /* Made bolder */
    }
}