.job-posting-module {
    font-family: arial, helvetica, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
}

#job-posting-output {
    margin-top: 20px;
}

.copy-section {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: white;
}

.export-section {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f8f9fa;
    text-align: center;
}

.export-status {
    margin-left: 10px;
    font-weight: bold;
    font-size: 14px;
}

textarea {
    width: 100%;
    font-family: monospace;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    resize: vertical;
    margin-bottom: 10px;
}

button {
    margin-bottom: 5px;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background-color: #0056b3;
}

.btn-primary {
    background-color: #007bff;
}

.btn-success {
    background-color: #28a745;
}

.btn-secondary {
    background-color: #6c757d;
}

.copy-feedback {
    margin-left: 10px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

h3 {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

p {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

.text-center {
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

.modal-preview {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
    border-left: 4px solid #007bff;
}

.modal-actions {
    text-align: right;
    margin-top: 20px;
}

.modal-actions button {
    margin-left: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
    .job-posting-module {
        padding: 15px;
        margin: 10px;
    }
    
    textarea {
        font-size: 12px;
    }
    
    button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-actions {
        text-align: center;
    }
    
    .modal-actions button {
        width: 100%;
        margin: 5px 0;
    }
}