.applied-jobs-dashboard {
    background: #fff;
    padding: 30px;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    margin-bottom: 30px;
}

.applied-jobs-dashboard h2 {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 500;
    color: #229e61;
}

.applied-jobs-table {
    width: 100%;
    border-collapse: collapse;
}

.applied-jobs-table th,
.applied-jobs-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9e9e9;
    color: #333;
}

.applied-jobs-table th {
    background: #f9f9f9;
    font-weight: 500;
    color: #229e61;
}

.applied-jobs-table tr:hover {
    background: #f9f9f9;
}

.applied-jobs-table td a {
    color: #229e61;
    text-decoration: none;
}

.applied-jobs-table td a:hover {
    color: #1a7a4a;
}

.application-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.status-new {
    background: #e3f2fd;
    color: #229e61;
}

.status-reviewing {
    background: #fff3e0;
    color: #229e61;
}

.status-shortlisted {
    background: #e8f5e9;
    color: #229e61;
}

.status-rejected {
    background: #ffebee;
    color: #d32f2f;
}

.button.view-job {
    display: inline-block;
    padding: 8px 15px;
    background: #229e61;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    font-weight: 500;
}

.button.view-job:hover {
    background: #1a7a4a;
    color: #fff;
}

@media (max-width: 768px) {
    .applied-jobs-table {
        display: block;
        overflow-x: auto;
    }
    
    .applied-jobs-dashboard {
        padding: 20px;
    }
    
    .applied-jobs-table th,
    .applied-jobs-table td {
        padding: 10px;
    }
}

/* Application Details Modal */
.modal-content {
    border-radius: 8px;
    border: none;
}

.modal-header {
    background: #f9f9f9;
    border-bottom: 1px solid #e9e9e9;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
}

.modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #0e1427;
}

.modal-body {
    padding: 20px;
}

.application-field {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9e9e9;
}

.application-field:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.application-field strong {
    display: block;
    margin-bottom: 5px;
    color: #0e1427;
}

.button.view-application {
    display: inline-block;
    padding: 8px 15px;
    background: #23c0e9;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.button.view-application:hover {
    background: #0e1427;
    color: #fff;
}

.close {
    font-size: 24px;
    font-weight: 400;
    color: #0e1427;
    opacity: 0.5;
    transition: opacity 0.2s ease-in-out;
}

.close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-header {
        padding: 10px 15px;
    }
    
    .modal-body {
        padding: 15px;
    }
} 