.container { max-width: 1200px; margin: 0 auto; padding: 20px; text-align: center; font-family: "Roboto", sans-serif; overflow: hidden; } h1 { font-size: 2.5rem; color: black; margin-bottom: 20px; } .mapsContainer { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; } .tile { width: 90%; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #2c3e50; background-color: #ffffff; box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px; transition: all 300ms ease-in-out; padding: 10px; border: 2px solid #232323; border-radius: 12px; margin-bottom: 20px; } .tile:hover { transform: scale(1.05); box-shadow: rgba(0, 0, 0, 0.4) 0px 8px 18px; background: #eeeeee; } .imgStyle { width: 80%; margin-top: 10px; margin-bottom: 5px; } .mapTitle { color: #2c2f33; text-transform: uppercase; margin-bottom: 10px; font-size: 1.2rem; } .buttonContainer { display: flex; flex-direction: column; gap: 10px; width: 100%; } .buttonsGroup { display: flex; justify-content: space-between; gap: 10px; width: 100%; } .approveButton, .denyButton { padding: 8px 16px; font-size: 14px; border: none; border-radius: 8px; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; } .approveButton { background-color: #4caf50; color: white; } .approveButton:hover { background-color: #388e3c; transform: translateY(-2px); } .denyButton { background-color: #f44336; color: white; } .denyButton:hover { background-color: #d32f2f; transform: translateY(-2px); } .viewPublishFormButton{ margin-bottom: 10px; } .reasonInput { width: 100%; padding: 8px; font-size: 14px; border: 1px solid #ccc; border-radius: 8px; outline: none; margin-bottom: 10px; } .reasonInput:focus { border-color: #1e90ff; box-shadow: 0 0 8px rgba(30, 144, 255, 0.5); } @media (max-width: 768px) { .mapsContainer { flex-direction: column; } .tile { width: 100%; } .reasonInput { width: 100%; } .buttonsGroup { flex-direction: column; gap: 10px; } }