/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background-color: #f3f4f6;
    color: #333;
}

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

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    font-size: 1.5rem;
    color: #2563eb;
}

h1 {
    font-size: 1.25rem;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Card Styles */
.card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Basic Information Section */
.basic-info {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #fff;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-item label {
    width: 7rem;
    color: #666;
}

.txt_input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    /*background-color: #f9fafb;*/
    color: #333;
}
.btn_school_select{
	flex: 1;
    padding: 0.3rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    /*background-color: #f9fafb;*/
    color: #333;
	width:90%
}

/* Photo Status */
.photo-status {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.status-text {
    color: #dc2626;
    font-size: 0.875rem;
}

/* Section Styles */
.admission-section,
.additional-options,
.special-programs,
.batch-section {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.section-title {
    background-color: #2563eb;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.subsection-title {
    color: #1f2937;
    font-size: 1rem;
    margin: 1.5rem 0 1rem;
    font-weight: 500;
}

/* Table Styles */
.selection-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.selection-table th,
.selection-table td {
    border: 1px solid #d1d5db;
    padding: 0.75rem;
    text-align: left;
    font-size: 0.875rem;
}

.selection-table th {
    background-color: #f9fafb;
    font-weight: 500;
    color: #374151;
}

.selection-table td.center {
    text-align: center;
}

/* Special Table Styles */
.special-table th,
.special-table td {
    font-size: 0.875rem;
    padding: 0.5rem;
}

/* Additional Options */
.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.option-item:last-child {
    border-bottom: none;
}

.option-title {
    color: #374151;
    font-size: 0.875rem;
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #4b5563;
}

/* School Agreement */
.school-agreement {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.school-agreement p {
    color: #374151;
    font-size: 0.875rem;
}

/* Submit Section */
.submit-section {
    text-align: center;
    padding: 2rem 0;
}

.btn-submit {
    background-color: #2563eb;
    color: #fff;
    padding: 0.75rem 3rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .selection-table {
        display: block;
        overflow-x: auto;
    }

    .option-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .radio-group {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }
}