.btn-agrifood {
  color: #000;
  background-color: #ffc600;
  border-color: #ffc600;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  font-weight: 600;
  width: 220px;
}
.btn-agrifood:hover, .btn-agrifood:active, .btn-agrifood:focus {
  color: #000;
  background-color: #ffd864;
  border-color: #ffc600;
}

 /* Shared radio button/checkbox button style */
 /* Shared radio button/checkbox button style */
.radio-btn {
    display: inline-block;
    padding: 6px 16px;  /* Reduced padding for a smaller button size */
    border: 1px solid #ddd;  /* Softer border color for a lighter look */
    border-radius: 4px;  /* Slightly smaller radius for a compact shape */
    cursor: pointer;
    font-weight: 600;  /* Slightly lighter boldness */
    font-size: 0.9rem;  /* Smaller font size for a compact look */
    color: #333;
    background-color: #fff;  /* White background for cleaner look */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.radio-btn:hover {
    background-color: #f7f7f7;  /* Lighter hover effect */
    border-color: #ccc;  /* Subtle border change on hover */
}

input[type="radio"]:checked + .radio-btn,
input[type="checkbox"]:checked + .radio-btn {
    background-color: #ffc600;  /* Yellow background when selected */
    border-color: #ffc600;
    color: #fff;  /* White text for contrast when selected */
}

/* Hide original radio and checkbox inputs */
input[type="radio"],
input[type="checkbox"] {
    display: none;
}




.btn-jobbroad {
	border-radius: 5px;
	color: #000;
	padding: 10px 16px;
	font-weight: 600;
  width: 220px;
  background-color: #ffc600;
  border-color: #ffc600;
}

.btn-jobbroad:hover, .btn-jobbroad:active, .btn-jobbroad:focus {
  color: #000;
  background-color: #ffd864;
  border-color: #ffc600;
  border-radius: 5px;
}

.d-inline {
  float: left;
}

/* Custom styles for the employer dashboard */
    .dashboard-container {
        padding: 40px 0;
        background-color: #f9f9f9;
    }

    .dashboard-title {
        text-align: center;
        margin-bottom: 50px;
        color: #333;
        font-size: 2.5rem;
        font-weight: bold;
    }

    .features-section {
        margin-bottom: 50px;
    }

    .features-title {
        text-align: center;
        margin-bottom: 30px;
        color: #333;
        font-size: 2rem;
        font-weight: bold;
    }

    .features {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .feature-card {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        width: 30%;
        margin-bottom: 20px;
        padding: 30px 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .feature-card:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .feature-card-icon {
        font-size: 2.5rem;
        /* Reduced icon size */
        color: #000;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #333;
    }

    .feature-card p {
        font-size: 1rem;
        margin-bottom: 20px;
        color: #555;
    }

    .feature-card .btn-feature {
        background-color: #FFC600;
        color: #000;
		font-weight: 600;
        border: none;
        padding: 8px 16px;
        /* Reduced padding */
        font-size: 0.9rem;
        /* Reduced font size */
        border-radius: 5px;
        text-decoration: none;
        width: 60%; 
        
    }

    .feature-card .btn-feature:hover {
        background-color: #ffd864;
        text-decoration: none;
        color: #000;
        
    }

    .job-boards-section {
        margin-bottom: 50px;
    }

    .job-boards-title {
        text-align: center;
        margin-bottom: 30px;
        color: #333;
        font-size: 2rem;
        font-weight: bold;
    }

    .job-boards {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .job-board-card {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        width: 48%;
        margin-bottom: 20px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: center;
    }

    .job-board-card-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #333;
    }

    .job-board-card-text {
        font-size: 1rem;
        margin-bottom: 20px;
        color: #555;
    }

    .job-board-card-btn {
        background-color: #FFC600;
        color: #000;
        border: none;
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 5px;
        text-decoration: none;

        /* Add these properties to reduce the button length */
        width: 60%;          /* Set the width to 60% of its container */
        max-width: 150px;    /* Optional: Set a maximum width */
        display: block;      /* Make the button a block-level element */
        margin: 0 auto;      /* Center the button horizontally */
		font-weight: 600;
    }

    .job-board-card-btn:hover {
        background-color: #ffd864;
        text-decoration: none;
        color: #000;
    }
    @media (max-width: 992px) {
        .feature-card {
            width: 48%;
        }
    }

    @media (max-width: 768px) {
        .feature-card {
            width: 100%;
        }

        .job-board-card {
            width: 100%;
        }
    }
	
	.whatever{
    background-color: #fff;
    display: inline-block;
    width: auto;
    height: 30px;
	text-align:center;
	border:1px solid #ffc600;
	border-radius:10px;
	padding-left:10px;
	padding-right:10px;
	padding-top:3px;
}

#checkboxes input[type=checkbox],
#checkboxes input[type=radio]{
    display: none;
}

#checkboxes input[type=checkbox]:checked + .whatever,
#checkboxes input[type=radio]:checked + .whatever{
    background-color: #ffc600;
	color:#fff;
}

.btn-warning:hover {
	background-color: #ffd864;
}

/* Section Styles */
section {
    /*padding: 20px;
    margin-bottom: 20px;*/
    border-radius: 8px;
    /* Subtle gray shadow */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.manage-cand {
	padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    /* Subtle gray shadow */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section:nth-child(odd) {
    background-color: #ffffff; /* White background */
}

section:nth-child(even) {
    background-color: #f4f6f9; /* Light gray background */
}

/* Section Titles */
.section-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #000000; /* Black text color */
    margin-bottom: 20px;
    border-bottom: 2px solid #000000; /* Black bottom border */
    padding-bottom: 10px;
}

.button-container {   
    margin-bottom: 12px; /* Add margin-bottom to create space between button rows */
}

/* Alert Styles */
.alert {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda; /* Light green background */
    color: #155724; /* Dark green text */
}

.alert-danger {
    background-color: #f8d7da; /* Light red background */
    color: #721c24; /* Dark red text */
}

/* Candidate Skill Filter */
#skill-buttons-container {
    max-height: 150px;
    overflow-y: scroll;
    padding: 15px 0;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Skill Button Styles */
.skill-btn {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ccc; /* Gray border */
    color: #000000; /* Black text color */
    margin: 5px;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.skill-btn.selected {
    background-color: #ffc600; /* Red background when selected */
    color: #ffffff; /* White text color when selected */
}

.skill-btn:hover {
    background-color: #ffd864; /* Light gray background on hover */
}

/* Search Button Container */
.search-btn-container {
    margin-top: 20px;
    text-align: center;
}

/* Content Header */
.content-header h1 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000; /* Black text color */
}

.job-listings-item {
    background-color: #fff;
    border: 1px solid #cbcedf;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 12px;
    padding: 12px;
    position: relative;
    width: 100%;
}
.job-listings-item .job-details-group {
    flex: 1 1 auto;
    padding-left: 16px;
}
.job-listings-item .job-details .job-details-content {
    display: flex;
    flex-direction: column;
}
a {
    color: #0d0c22;
    text-decoration: none;
    background-color: transparent;
}
.job-listings-item .job-details .job-details-info {
    margin-bottom: 12px;
}
.job-listings-item .job-details .job-details-info-item {
    font-size: 14px;
    font-weight: 500;
    color: rgba(13,12,34,.75);
}
.job-listings-item .job-meta-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: static;
}
.job-listings-item .job-meta-info .job-posted-date {
    font-size: 14px;
    font-weight: 500;
}
.job-listings-item .job-meta-info .apply-button {
    min-width: 80px;
    position: absolute;
    right: 34px;
}
.btn-primary {
    margin-left: 10px;
}

.btn-primary,
.btn-danger,
.btn-warning,
.btn-success {
    margin-right: 10px; /* Equal spacing between all buttons */
}


.profile-section {
	background-color: #fff;
	padding: 20px 0 20px 0;
	margin-bottom: 20px;
	border-radius: 5px;
}
.profile-section h3 {
	border-bottom: 2px solid #000;
	padding-bottom: 10px;
	margin-bottom: 20px;
	color: #333;
}
.profile-item {
	display: flex;
	margin-bottom: 10px;
}
.profile-item .label {
	width: 30%;
	font-weight: bold;
	color: #555;
}
.profile-item .value {
	width: 70%;
	color: #333;
}
.alert {
	margin-top: 20px;
}
.edit-button {
	text-align: right;
	margin-bottom: 20px;
}