.volunteer-application-form-wrapper {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.volunteer-form {
    background: #fff;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group label.required::after {
    content: " *";
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    margin-right: 5px;
}

.input-with-button {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-with-button input {
    flex: 1;
}

.button-link {
    padding: 10px 15px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.button-link:hover {
    background: #005a87;
}

.time-input {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.time-input label {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    white-space: nowrap;
}

.time-input input {
    width: 200px;
}

.field-category {
    margin-bottom: 20px;
    padding: 15px;
    background: #ececec;
    border-radius: 4px;
}

.field-category h4 {
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
}

.form-description {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.form-note {
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

.form-note a {
    color: #0073aa;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.privacy-section {
    background: #ececec;
    padding: 20px;
    border-radius: 4px;
}

.privacy-content {
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.6;
}

.privacy-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
    font-size: 15px;
}

.privacy-content h4:first-child {
    margin-top: 0;
}

.privacy-content p {
    margin-bottom: 10px;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-content li {
    margin-bottom: 5px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    padding: 15px 40px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #005a87;
}

.submit-button .icon {
    font-size: 18px;
}

.form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* 탭 스타일 */
.volunteer-tabs-wrapper {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
}

.volunteer-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.volunteer-tab {
    padding: 12px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.volunteer-tab:hover {
    background-color: #7B583C;
    color: #fff;
    border-bottom-color: transparent;
}

.volunteer-tab.active {
    background-color: #7B583C;
    color: #fff;
    border-bottom-color: transparent;
}

.volunteer-tab-content {
    display: none;
}

.volunteer-tab-content.active {
    display: block;
}

/* 신청 현황 조회 스타일 */
.status-check-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.status-check-form h3 {
    margin-bottom: 25px;
    color: #333;
    font-size: 22px;
    text-align: center;
}

.status-results {
    margin-top: 30px;
}

.status-cards {
    display: grid;
    gap: 20px;
}

.status-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.status-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.status-card-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.status-card-header h4 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.status-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-label {
    font-weight: 600;
    color: #666;
    min-width: 100px;
}

.status-value {
    color: #333;
    flex: 1;
}

.status-value.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    min-width: auto;
}

.status-value.status-badge.status-waiting {
    background-color: #fff3cd;
    color: #856404;
}

.status-value.status-badge.status-confirmed {
    background-color: #d4edda;
    color: #155724;
}

.status-results .loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

.status-results .error-message {
    text-align: center;
    padding: 40px;
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    font-size: 16px;
}

/* 반응형 */
@media (max-width: 768px) {
    .volunteer-application-form-wrapper {
        padding: 10px;
    }
    
    .volunteer-tabs-wrapper {
        padding: 10px;
    }
    
    .volunteer-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .volunteer-tab {
        width: 100%;
        text-align: center;
        border-bottom: none;
        border-left: 3px solid transparent;
        margin-bottom: 0;
        padding: 15px;
    }
    
    .volunteer-tab:hover {
        background-color: #7B583C;
        color: #fff;
        border-left-color: transparent;
    }
    
    .volunteer-tab.active {
        background-color: #7B583C;
        color: #fff;
        border-left-color: transparent;
    }
    
    .volunteer-form {
        padding: 20px;
    }
    
    .input-with-button {
        flex-direction: column;
    }
    
    .button-link {
        width: 100%;
        text-align: center;
    }
    
    .status-check-form {
        padding: 20px;
    }
    
    .status-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .status-label {
        min-width: auto;
    }
}

