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

header {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
}

h1, h2 {
    color: #1a3c5e;
}

.destinations, .hotels {
    padding: 40px;
    text-align: center;
}

.destination-grid, .hotel-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.destination-card, .hotel-card {
   width: 550px;
    text-align: left;
    float: left;
    margin: 5px;
}

.destination-card img, .hotel-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.filter-buttons {
    margin: 20px 0;
}

.filter-buttons button {
    padding: 10px 20px;
    margin: 0 5px;
    background-color: #1a3c5e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.rating {
    color: #f4c430;
}

.price {
    font-weight: bold;
}

.book-now {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a3c5e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.booking-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.booking-form label {
    display: block;
    margin: 10px 0 5px;
}

.booking-form input, .booking-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.booking-form button {
    width: 100%;
    padding: 10px;
    background-color: #1a3c5e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Manage Page Specific Styles */
.manage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.table-section {
    margin-bottom: 40px;
}
.table-section h2 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #1a3c5e;
}
.table-section .add-button {
    display: inline-block;
    margin-bottom: 15px;
    padding: 10px 20px;
    background-color: #1a3c5e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.table-section .add-button:hover {
    background-color: #f4c430;
    color: #1a3c5e;
}
table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}
th {
    background-color: #1a3c5e;
    color: white;
    font-weight: bold;
}
tr:nth-child(even) {
    background-color: #f8f9fa;
}
tr:hover {
    background-color: #e9ecef;
}
.action-links a {
    color: #1a3c5e;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
}
.action-links a:hover {
    color: #f4c430;
}
.images-cell {
    max-width: 200px;
}
.images-cell img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 3px;
}
.images-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.image-item {
    position: relative;
}
.image-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 3px;
}
.image-item .delete-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}
.modal-content h2 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #1a3c5e;
}
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #1a3c5e;
    cursor: pointer;
}
.close:hover {
    color: #f4c430;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #1a3c5e;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
.form-group textarea {
    height: 80px;
    resize: vertical;
}
.modal-content button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #1a3c5e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.modal-content button:hover {
    background-color: #f4c430;
    color: #1a3c5e;
}
.modal-content .cancel-link {
    display: inline-block;
    margin-top: 10px;
    margin-left: 10px;
    color: #1a3c5e;
    text-decoration: none;
    font-weight: bold;
}
.modal-content .cancel-link:hover {
    color: #f4c430;
}
/* Confirmation and Error Messages */
.confirmation-message, .error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.confirmation-message {
    background-color: #d4edda;
    color: #155724;
}
.error-message {
    background-color: #f8d7da;
    color: #721c24;
}
.confirmation-message.show, .error-message.show {
    opacity: 1;
}
.w300 {
    width: 365px;
}
.map-btn{display:none!important}