.top_notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff5f5; /* light red background */
    color: #d9534f; /* red text */
    border: 1px solid #d9534f; /* red border */
    padding: 10px;
    margin: 2px;
    text-align: center;
    font-weight: bold;
    z-index: 1000; /* keep it on top */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* subtle shadow for separation */
}

/* Shift the page content down to account for the fixed notification */
body {
    margin-top: 50px; /* Adjust based on the height of .top_notice */
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .top_notice {
        font-size: 14px;
        padding: 8px;
    }
    body {
        margin-top: 60px; /* Adjust margin-top for mobile if necessary */
    }
}
