/ government-news-app-ui/government-news-app-ui/assets/css/mobile.css

/* Mobile styles for the Government News App UI */

/* General mobile styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: #003366; /* Navy blue */
    color: white;
    padding: 10px;
    text-align: center;
}

/* Home feed styles */
.notice-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Alert banner styles */
.alert-banner {
    background-color: red;
    color: white;
    padding: 10px;
    text-align: center;
}

/* Button styles */
button {
    background-color: #0056b3; /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .notice-card {
        margin: 5px;
        padding: 10px;
    }

    button {
        width: 100%;
    }
}