:root {
    --primary-bg: #d9d9d9;
    --secondary-bg: #e8e8e8;
    --sidebar-bg: #eae8e8;
    --text-primary: #000;
    --text-secondary: #666;
    --gold-star: #ffd700;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.me-2{
    height: 120px;
}

.header {
    background: linear-gradient(90deg, #3F51B5 0%, #2196F3 100%);
    padding: 30px 20px;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
}

.info-icon {
    cursor: pointer;
    margin-left: 10px;
    color: #FFD700;
    font-size: 20px;
}

.city-selector {
    background-color: #f8f9fa;
    padding: 30px 20px;
    text-align: center;
}

.city-selector select {
    min-width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.create-itinerary-btn {
    margin-left: 20px;
    padding: 10px 20px;
    background-color: #FF5722;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    font-weight: bold;
}

.create-itinerary-btn:hover {
    background-color: #aaaaaa;
}

.main-content {
    display: flex;
    transition: all 0.3s ease;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.content-area {
    flex: 1;
    transition: all 0.3s ease;
}

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

.column {
    background-color: #fff;
}

.column h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF5722;
}

.item {
    padding: 15px;
    margin-bottom: 10px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.item.greyed-out {
    color: #999;
}

.item.greyed-out .item-name,
.item.greyed-out .item-location {
    color: #999;
}

.item-name {
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-location,
.item-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 3px;
}

.gold-star {
    color: var(--gold-star);
    font-size: 1.2rem;
}

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

.btn-add,
.btn-remove {
    padding: 5px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: rgb(255, 253, 253);
}

.btn-add {
    color: #3F51B5;
}

.btn-remove {
    /* background-color: #fff; */
    color: #000;
    border: 1px solid #000;
}

.btn-add:hover,
.btn-remove:hover {
    opacity: 0.8;
}

.sidebar {
    width: 0;
    overflow: hidden;
    background-color: var(--sidebar-bg);
    padding: 0;
    transition: all 0.3s ease;
    margin-left: 0;
    border-top: #3F51B5 4px solid;
    border-radius: 10px;
}

.sidebar.active {
    width: 350px;
    padding: 30px 20px;
    margin-left: 30px;
}

.sidebar h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.itinerary-item {
    padding: 12px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.itinerary-item-content {
    flex: 1;
}

.itinerary-item-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.itinerary-item-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.itinerary-item-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.remove-icon {
    cursor: pointer;
    font-size: 1.2rem;
}

.sidebar-actions {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.btn-print,
.btn-cancel {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-print {
    background-color: #000;
    color: #fff;
}

.btn-cancel {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
}

.footer {
    text-align: center;
    padding: 30px;
    color: var(--text-secondary);
    font-weight: bold;
    font-size: 12px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.itinerary-limit-warning {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 1030px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .city-selector {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .city-selector select {
        min-width: 100%;
    }

    .create-itinerary-btn {
        margin-left: 0;
        width: 100%;
    }

    .main-content {
        flex-direction: column;
        padding: 10px;
    }

    .columns-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sidebar.active {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .accordion {
        margin-bottom: 15px;
    }

    .accordion-button {
        font-size: 1.2rem;
        font-weight: 600;
    }
}

/* Accordion styles for mobile */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-bg);
    color: #000;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}