/* job filteration  */
/* Header Filter Section */
.header-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 20px;
 }
 
 .header-filter .heading {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
 }
 
 .filter-section {
    display: flex;
    align-items: center;
    gap: 10px;
 }
 
 .filter {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 150px;
 }
 
 /* job and employer part */
 
 /* Employer Box Container */
 .employer {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 15px;
    gap: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
 }
 
 /* Hover Effect */
 .employer:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
 }
 
 /* Employer Logo Styling */
 .logo-container {
    flex: 0 0 60px; /* Fixed size for the logo */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 50%;
    overflow: hidden;
    height: 60px;
    width: 60px;
 }
 
 .logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
 }
 
 /* Employer Details */
 .employer-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1; /* Allow details to take up remaining space */
 }
 
 .company-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
 }
 
 .date-posted {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
 }
 
 /* Job Card Box Styling */
 .box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 14px;
 }
 
 /* Hover Effect for Job Card */
 .box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
 }
 /* Box Container Styling */
.box-container {
    display: flex;
    flex-wrap: wrap; /* Allow boxes to wrap to the next row */
    gap: 20px; /* Space between boxes */
    justify-content: space-between; /* Spread boxes evenly */
}

/* Medium Box Styling */
.box {
    flex: 0 0 48%; /* Take 48% width for two columns with space between */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Full Width Box for Specific Needs */
.box.full-width {
    flex: 0 0 100%; /* Take full width */
}

/* Hover Effect for Boxes */
.box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

/* Strong Element Styling */
.box p strong {
    font-size: 1.4rem; /* Bigger font size for strong text */
    font-family: 'Poppins', sans-serif; /* Beautiful, clean font-family */
    color: #444;
}

/* Employer Section (Side-by-Side Layout) */
.employer {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo and details */
    margin-bottom: 15px;
}

.logo-container {
    flex: 0 0 60px; /* Fixed size for logo */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 50%;
    overflow: hidden;
    height: 60px;
    width: 60px;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.employer-details {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.date-posted {
    font-size: 14px;
    color: #777;
}

/* Job Title Styling */
.title {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}

/* Inline Button Styling */
.inline-btn {
    display: inline-block;
    /* background-color: #007bff; */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 2rem;
    transition: background-color 0.3s;
}
@media (max-width: 768px) {
    .box {
        flex: 0 0 100%; /* Full width on smaller screens */
    }
}
