/* Job Application Form Styles */
.job-application-form {
    padding: 20px 0;
}

.job-application-form .form-group {
    margin-bottom: 20px;
}

.job-application-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0e1427;
}

.job-application-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s ease-in-out;
}

.job-application-form .form-control:focus {
    border-color: #23c0e9;
    outline: none;
    box-shadow: 0 0 0 2px rgba(35, 192, 233, 0.1);
}

.job-application-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.job-application-form .form-text {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Modal Styles */
.modal-dialog {
    max-width: 600px;
    margin: 30px auto;
}

.modal-content {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.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;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #e9e9e9;
    text-align: right;
}

/* Button Styles */
.btn-primary {
    background: #23c0e9;
    border-color: #23c0e9;
    color: #fff;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    background: #0e1427;
    border-color: #0e1427;
    color: #fff;
}

.btn-primary:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

/* Alert Styles */
.alert {
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Close Button */
.close {
    font-size: 24px;
    font-weight: 400;
    color: #0e1427;
    opacity: 0.5;
    transition: opacity 0.2s ease-in-out;
    background: none;
    border: none;
    padding: 0;
    margin: -1rem -1rem -1rem auto;
}

.close:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-header {
        padding: 10px 15px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .btn-primary {
        width: 100%;
    }
} 