/* --- Single Notice Styles --- */
body{
    background-color: #0E2148;
}
/* --- Single Notice Styles --- */
.single-notice-wrapper {
    max-width: 800px; /* Adjust as needed */
    margin: 40px auto;
    padding: 25px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.entry-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.entry-title {
    font-family: 'Arial', sans-serif;
    font-size: 1.6em;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
    padding-top: 20px;
}

.entry-meta {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9em;
    color: #777;
    margin-top: 5px;
}

.entry-content {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1em;
    color: #444;
    line-height: 1.7;
    padding-left: 20px;
    padding-right: 20px;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.back-to-notices {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    text-decoration: none;
    color: #007bff;
    border: 1px solid #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.back-to-notices:hover {
    background-color: #007bff;
    color: #fff;
}

/* --- Responsive Adjustments for Tablets (max-width: 768px) --- */
@media (max-width: 768px) {
    .single-notice-wrapper {
        padding: 20px;
        margin: 20px auto;
    }
    .entry-title {
        font-size: 1.8em;
    }
    .entry-content {
        font-size: 1em;
    }
    .back-to-notices {
        padding: 8px 16px;
    }
}

/* --- Responsive Adjustments for Mobile Phones (max-width: 480px) --- */
@media (max-width: 480px) {
    .single-notice-wrapper {
        padding: 15px; /* Reduced padding for smaller screens */
        margin: 15px auto;
    }
    .entry-title {
        font-size: 1.1em; /* Significantly smaller title */
    }
    .entry-meta {
        font-size: 0.8em; /* Smaller date text */
    }
    .entry-content {
        font-size: 0.9em; /* Smaller content text */
        line-height: 1.6;
    }
    .entry-footer {
        margin-top: 20px;
        padding-top: 15px;
    }
    .back-to-notices {
        font-size: 0.9em; /* Smaller button text */
        padding: 6px 12px;
    }
}