/* mobile.css */

body {
    font-family: Arial, sans-serif;
}

.container {
    padding: 20px;
}

.container h1 {
    font-size: 1.5em;
}

.container form input[type="text"],
.container form input[type="url"],
.container form input[type="file"],
.container form textarea,
.container form select {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

.container form button {
    width: 100%;
    padding: 10px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.container form button:hover {
    background-color: #45a049;
}

.notification {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
}

.notification.success {
    background-color: #4caf50;
}

.notification.error {
    background-color: #f44336;
}



    .container-addnew {
        padding: 10px;
    }
    .post {
        width: 100%;
    }
    .pagination a {
        padding: 5px;
        margin: 0 2px;
    }
    .search input[type="text"],
    .search button,
    .search #addEventButton {
        width: 100%;
        margin-bottom: 10px;
    }


