* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background: white;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.site-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-item {
    padding: 12px 24px;
    background: #f8f9fa;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.menu-item:hover {
    background: #e9ecef;
}

.menu-item.active {
    background: #2c3e50;
    color: white;
}

.page-heading {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.search-bar {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    display: block;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.job-listing {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #2c3e50;
}

.job-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.job-summary {
    color: #666;
    margin-bottom: 10px;
}

.job-pay {
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 15px;
}

.btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn:hover {
    background: #34495e;
}

.btn-danger {
    background: #e74c3c;
}

.btn-danger:hover {
    background: #c0392b;
}

.btn-success {
    background: #27ae60;
}

.btn-success:hover {
    background: #229954;
}

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

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.form-field textarea {
    height: 120px;
    resize: vertical;
}

.application-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.alert {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.details-tag {
    background: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 6px;
    margin-bottom: 15px;
}

.details-tag summary {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
}

.details-tag[open] summary {
    border-bottom: 1px solid #ced4da;
}

.details-content {
    padding: 15px;
}

.radio-group {
    margin-bottom: 15px;
}

.radio-group label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: normal;
}

.radio-group input[type="radio"] {
    margin-right: 10px;
    width: auto;
}

.credit-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.credit-option {
    background: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.credit-option:hover {
    border-color: #2c3e50;
}

.credit-option.selected {
    border-color: #2c3e50;
    background: #e8f4f8;
}

.back-button {
    margin-bottom: 20px;
}

.examples {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.toolbar button {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.toolbar button:hover {
    background: #e9ecef;
}

@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }
    
    .credit-options {
        flex-direction: column;
    }
    
    .credit-option {
        min-width: auto;
    }
}

