    .mt-7em{
        margin-top: 7em;
        padding-bottom: 2em;
    }
   
/* Search Section */
.search-section {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Job Card Styles */
.job-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.job-title {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.job-company {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 15px;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.job-detail-item {
    display: flex;
    align-items: center;
    color: #34495e;
    font-size: 0.9rem;
}

.job-detail-item i {
    margin-right: 5px;
    color: #128a76;
}
.job-description{
    height: 90px;
}
/* Button Styles */
.apply-btn {
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out;
}


/* Modal Styles */
.modal-content {
    border-radius: 8px;
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

/* Form Styles */
.form-control:focus {
    border-color: none;
    box-shadow: none;
}

/* Job Posting Form Styles */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-header {
    border-bottom: none;
    padding: 1.5rem;
}

.card-body {
    padding: 2rem;
}

.form-label {
    color: #2c3e50;
    font-weight: 500;
}

.form-label i {
    color: #128a76;
    margin-right: 0.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Salary Input Styles */
.input-group-text {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.input-group-text i {
    color: #128a76;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .search-section .row > div {
        margin-bottom: 10px;
    }
    
    .job-details {
        flex-direction: column;
        gap: 10px;
    }
} 