/*
Theme Name: Hotel Theme
Description: Custom WordPress theme for hotel website with existing HTML/CSS/JS integration
Version: 1.0
Author: Hotel Admin
*/

/* WordPress required styles */
body {
    margin: 0;
    padding: 0;
}

.wp-admin-bar {
    display: none !important;
}

/* WordPress specific overrides */
.wp-content {
    margin: 0;
    padding: 0;
}

.single-post .entry-content,
.page .entry-content {
    max-width: 100%;
    margin: 0;
}

/* Admin panel integration styles - removed */

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
}

/* WordPress admin bar compatibility */
.admin-bar .main-wrapper {
    margin-top: 32px;
}

/* Ensure original theme styles work correctly */
.main-wrapper {
    position: relative;
}