.section-wrapper {
    background: #e8ecf1;
    padding: 40px 20px;
    margin-top: 80px;
}

#searchInput {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px auto;
    display: block;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.section-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-box h1 {
    font-size: 2.2rem;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-box h2 {
    font-size: 1.3rem;
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

#searchInput {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px auto;
    display: block;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.section-card {
    text-decoration: none;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.section-card:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: #d0e0ff;
}

.section-number {
    font-size: 1.1rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 6px;
}

.section-title {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

.section-card.updated .section-number {
    color: red;
}
  

@media (max-width: 600px) {
    .section-box h1 {
        font-size: 1.8rem;
    }

    .section-box h2 {
        font-size: 1.1rem;
    }

    #searchInput {
        font-size: 0.95rem;
        padding: 10px 14px;
    }

    .section-card {
        padding: 16px;
    }
}
