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

#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;
}

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;
}

.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;
}

/* Responsive design */
@media (max-width: 768px) {
    .job-posting-module {
        padding: 15px;
        margin: 10px;
    }
    
    textarea {
        font-size: 12px;
    }
    
    button {
        width: 100%;
        margin-bottom: 10px;
    }
}