/* School Notice Board Styles */

.snb-marquee {
  overflow-x: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

.marquee-content {
  display: inline-block;
}


.snb-header {
    background-color: #0073aa;
    color: #fff;
    padding: 10px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.snb-marquee {
    background-color: #f1f1f1;
    padding: 8px 10px;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.snb-marquee a {
    color: #0073aa;
    margin-right: 30px;
    text-decoration: none;
    font-weight: 600;
}

.snb-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.snb-table th,
.snb-table td {
    padding: 8px 12px;
    border: 1px solid #ccc;
    text-align: left;
}

.snb-table th {
    background-color: #eee;
}

.snb-table a {
    color: #0073aa;
    text-decoration: none;
}

.snb-table a:hover {
    text-decoration: underline;
}

.snb-pagination {
    text-align: center;
    margin-top: 15px;
}

.snb-single-notice h1 {
    color: #0073aa;
    margin-bottom: 10px;
}

.snb-single-notice .notice-content {
    line-height: 1.6;
    font-size: 16px;
}

.snb-single-notice .notice-download a {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}

.snb-single-notice .notice-download a:hover {
    background-color: #005f8a;
}

/* Responsive marquee for smaller devices */
@media (max-width: 600px) {
    .snb-marquee {
        font-size: 14px;
        padding: 6px 8px;
    }

    .snb-table th,
    .snb-table td {
        padding: 6px 8px;
        font-size: 14px;
    }
}
