.elementor-25385 .elementor-element.elementor-element-72e8379{--display:flex;}/* Start custom CSS *//* Filter Form */
.job-filter-form {
    margin: 20px 0 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.job-filter-form label {
    font-weight: 600;
    color: #2c3e50;
}

.job-filter-form select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 15px;
    min-width: 300px;
    max-width: 100%;
}

/* Applications List */
.applications-list {
    display: grid;
    gap: 25px;
    margin-top: 20px;
}

.application-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.application-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.application-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.job-title {
    margin: 0;
    font-size: 18px;
}

.job-title a {
    color: #2271b1;
    text-decoration: none;
}

.job-title a:hover {
    text-decoration: underline;
}

.application-date {
    color: #7f8c8d;
    font-size: 14px;
}

.application-details {
    padding: 20px 25px;
}

.detail-row {
    display: flex;
    margin-bottom: 12px;
}

.detail-label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 120px;
}

.detail-value {
    color: #34495e;
}

.detail-value a {
    color: #2271b1;
    text-decoration: none;
}

.detail-value a:hover {
    text-decoration: underline;
}

.message-row {
    flex-direction: column;
}

.message-content {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-top: 8px;
    line-height: 1.6;
}

.application-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #2271b1;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.2s;
}

.download-button:hover {
    background: #1a5a8a;
}

.download-button svg {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .job-filter-form {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .detail-row {
        flex-direction: column;
    }
    
    .detail-label {
        margin-bottom: 5px;
    }
}


*{
    
    font-family: 'Montserrat';
}/* End custom CSS */