/*
Theme Name: Waihin Travel
Theme URI: https://waihintravel.com/waihin-travel
Description: Custom travel agency theme for Waihin Travel & Tours - Your Gateway to Unforgettable Journeys
Version: 1.0.0
Author: Sayar Phyo
Author URI: https://yourwebsite.com
Text Domain: waihin-travel
Requires at least: 5.0
Tested up to: 6.3
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: travel, tourism, booking, responsive, custom-design
*/

/* === ALL YOUR EXISTING CSS CODE GOES BELOW THIS LINE === */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #1a73e8;
    --secondary: #34a853;
    --accent: #fbbc05;
    --dark: #202124;
    --light: #f8f9fa;
    --text: #3c4043;
    --buddha: #8B4513;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #0d5bb9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: var(--secondary);
}

.btn-secondary:hover {
    background: #2a8a47;
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background: #e6a704;
}

.btn-buddha {
    background: var(--buddha);
}

.btn-buddha:hover {
    background: #734321;
}

.text-center {
    text-align: center;
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

.logo p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 120px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Services Section with Tabs */
.services-section {
    background: var(--light);
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.tab {
    padding: 12px 25px;
    background: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 5px 5px 0 0;
    margin: 0 5px;
    color: var(--text);
}

.tab:hover {
    background: #f0f0f0;
}

.tab.active {
    background: var(--primary);
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-info h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.service-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-form h3 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Featured Packages Section */
.featured-packages {
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.package-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.package-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.package-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 20px;
}

.package-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.package-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

.booking-form h3 {
    margin-bottom: 20px;
    text-align: center;
}

/* About Section */
.about {
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-text h2:after {
    left: 0;
    transform: none;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.contact-form {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #bbb;
}

/* Blog Styles */
.site-main {
    padding: 120px 0 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 30px;
}

.post-header {
    margin-bottom: 15px;
}

.post-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.post-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.post-title a:hover {
    color: var(--primary);
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #666;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-excerpt {
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.7;
}

.post-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.read-more {
    font-size: 0.9rem;
    padding: 8px 20px;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background: var(--light);
    color: var(--text);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    min-width: 45px;
}

.page-numbers:hover {
    background: var(--primary);
    color: white;
}

.page-numbers.current {
    background: var(--primary);
    color: white;
}

/* No Content Styles */
.no-content {
    padding: 80px 0;
    text-align: center;
}

.no-content-message h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.no-content-message p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

/* WordPress Specific Styles */
.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo-link img {
    max-height: 50px;
    width: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab {
        width: 100%;
        margin: 5px 0;
        border-radius: 5px;
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 10px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-title {
        font-size: 1.2rem;
    }
}

/* WordPress Admin Bar Adjustment */
.admin-bar header {
    top: 38px;
}

@media screen and (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}
/* Highlights Sections */
.services-highlights {
    background: var(--light);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-highlight-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-highlight-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.service-features-mini {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.service-features-mini li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features-mini li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Packages Highlights */
.packages-highlights {
    padding: 80px 0;
    background: white;
}

.packages-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-highlight-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.package-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.package-image-mini {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.package-image-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-highlight-card:hover .package-image-mini img {
    transform: scale(1.1);
}

.package-content-mini {
    padding: 25px;
}

.package-meta-mini {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.package-price-mini {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.3rem;
    margin: 15px 0;
}

.package-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.package-actions .btn {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--light);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-item h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

/* About Highlights */
.about-highlights {
    padding: 80px 0;
    background: white;
}

.about-content-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text-mini h2 {
    text-align: left;
}

.about-text-mini h2:after {
    left: 0;
    transform: none;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text);
}

.about-image-mini {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image-mini img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Mini */
.contact-container-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-mini {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form-mini {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
}

.contact-form-mini h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Responsive Highlights */
@media (max-width: 768px) {
    .services-grid,
    .packages-grid-mini,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content-mini {
        grid-template-columns: 1fr;
    }
    
    .contact-container-mini {
        grid-template-columns: 1fr;
    }
    
    .package-actions {
        flex-direction: column;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-highlight-card,
    .package-highlight-card {
        padding: 20px;
    }
    
    .package-actions .btn {
        font-size: 0.8rem;
    }
}
/* Service Details Styles */
.services-details-section {
    background: var(--light);
    padding: 80px 0;
}

.btn-back-to-highlights {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.btn-back-to-highlights:hover {
    background: var(--primary);
    color: white;
}

.service-detail-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.service-info-detailed h4 {
    color: var(--primary);
    margin: 25px 0 15px;
}

.service-info-detailed h4:first-child {
    margin-top: 0;
}

.service-features-detailed {
    list-style: none;
}

.service-features-detailed li {
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
}

.service-features-detailed li:before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    margin-right: 10px;
}

.service-form-detailed {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.service-form-detailed h4 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.service-cta {
    margin-top: 30px;
    text-align: center;
}

.service-note, .package-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.loading, .error {
    text-align: center;
    padding: 40px;
    font-size: 1.1rem;
}

.loading {
    color: var(--primary);
}

.error {
    color: #dc3545;
}

/* Package Management Admin Styles */
.package-meta-fields {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    margin: 15px 0;
}

.package-meta-fields .form-field {
    margin-bottom: 15px;
}

.package-meta-fields label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.package-meta-fields input, 
.package-meta-fields select, 
.package-meta-fields textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content {
        padding: 20px;
    }
    
    .service-form-detailed {
        padding: 20px;
    }
}
/* Booking System Styles */
.booking-meta-fields {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
}

.booking-meta-fields .form-field {
    margin-bottom: 15px;
}

.booking-meta-fields label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.booking-meta-fields input,
.booking-meta-fields select,
.booking-meta-fields textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
}

.booking-meta-fields input[readonly],
.booking-meta-fields textarea[readonly] {
    background: #f5f5f5;
    color: #666;
}

/* Booking Form Styles */
.booking-form-shortcode {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 5px;
    margin-top: 15px;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 5px;
    margin-top: 15px;
    border: 1px solid #f5c6cb;
}

/* Admin Booking List Styles */
.post-type-booking .wp-list-table .column-title {
    width: 15%;
}

.post-type-booking .wp-list-table .column-customer_name {
    width: 20%;
}

.post-type-booking .wp-list-table .column-package {
    width: 20%;
}

.post-type-booking .wp-list-table .column-travel_date {
    width: 12%;
}

.post-type-booking .wp-list-table .column-travelers {
    width: 10%;
}

.post-type-booking .wp-list-table .column-status {
    width: 10%;
}

.post-type-booking .wp-list-table .column-date {
    width: 13%;
}

/* Responsive Booking Form */
@media (max-width: 768px) {
    .booking-form-shortcode {
        padding: 20px;
    }
    
    .booking-meta-fields {
        padding: 15px;
    }
}