/* 招生计划结果卡片样式 */
.result-card {
    background: var(--card-background);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.result-header h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
}

.education-level {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-content {
    display: grid;
    gap: 1rem;
}

.college-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.college-info strong {
    font-size: 1.125rem;
    color: var(--text-primary);
}

.college-code {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.major-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.major-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.major-info p strong {
    color: var(--text-primary);
    margin-right: 0.5rem;
}

.enrollment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.enrollment-info p {
    margin: 0;
    padding: 0.75rem;
    background: var(--background-color);
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.enrollment-info p strong {
    display: block;
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
    background: var(--card-background);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}
