.calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,minmax(150px,1fr));
    gap:10px;
    min-width:1100px;
}
.weekday{
    background:#212529;
    color:#fff;
    text-align:center;
    padding:15px;
    font-weight:600;
    border-radius:12px;
}
.calendar-day{
    min-height:130px;
    background:#fff;
    border-radius:15px;
    border:1px solid #e9ecef;
    padding:12px;
    transition:.25s;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    position:relative;
}
.calendar-day:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    border-color:#198754;
}
.calendar-day.empty{
    background:transparent;
    border:none;
    box-shadow:none;
    cursor:default;
}
.gig-badge{
    background:#198754;
    color:#fff;
    border-radius:20px;
    padding:6px 10px;
    font-size:11px;
    font-weight:600;
}
.gig-time{
    margin-top:5px;
    font-size:12px;
    color:#777;
}
.today{
    border:2px solid #198754;
    background:#f4fff8;
}
.today-label{
    position:absolute;
    top:8px;
    right:8px;
    background:#198754;
    color:#fff;
    font-size:10px;
    padding:3px 8px;
    border-radius:20px;
}
.calendar-day{
    min-height:120px;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    padding:10px;
    transition:.25s;
    cursor:pointer;
    overflow:hidden;
}
.calendar-day:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}
.day-number{
    font-size:18px;
    font-weight:700;
    color:#222;
    margin-bottom:8px;
}
.gig-badge{
    background:#198754;
    color:#fff;
    border-radius:20px;
    padding:4px 8px;
    font-size:12px;
    font-weight:600;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.gig-time{
    margin-top:6px;
    font-size:12px;
    color:#272727;
    font-weight:500;
}
.calendar-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:25px;
    padding-bottom:20px;
    border-bottom:1px solid #ececec;
}
.calendar-title{
    text-align:center;
    flex:1;
}
.calendar-title h3{
    margin:0;
    font-weight:700;
    font-size:28px;
}
.calendar-title small{
    color:#888;
}
.calendar-nav{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#f5f5f5;
    transition:.3s;
}
.calendar-nav:hover{
    background:#198754;
    color:#fff;
}
.month-switcher{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
}
.month-switcher a{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f5f5f5;
    color:#333;
    text-decoration:none;
    transition:.3s;
}
.month-switcher a:hover{
    background:#198754;
    color:#fff;
}
.month-switcher h3{
    margin:0;
    font-weight:700;
}
.calendar-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:30px;
}
.calendar-heading h2{
    margin:0;
    font-weight:700;
    color:#FFF;
}
.calendar-heading p{
    margin:5px 0 0;
    color:#777;
    font-size:14px;
}
.calendar-controls{
    display:flex;
    align-items:center;
    gap:10px;
}
.calendar-month{
    background:#fff;
    border-radius:15px;
    padding:12px 30px;
    min-width:220px;
    text-align:center;
    font-size:20px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.calendar-btn{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#fff;
    color:#222;
    border-radius:50%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.25s;
}
.calendar-btn:hover{
    background: linear-gradient(117deg, rgba(135, 98, 38, 1) 0%, rgba(214, 165, 86, 1) 50%, rgba(237, 221, 83, 1) 100%);
    color:#fff;
}
.today-btn{
    padding:12px 20px;
    border-radius:15px;
    background: #876226;
    background: linear-gradient(117deg, rgba(135, 98, 38, 1) 0%, rgba(214, 165, 86, 1) 50%, rgba(237, 221, 83, 1) 100%);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.25s;
}
.today-btn:hover{
    background:#146c43;
    color:#fff;
}
@media(max-width:768px){
.calendar-toolbar{
    flex-direction:column;
    align-items:flex-start;
}
.calendar-controls{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
}
.calendar-month{
    min-width:180px;
    font-size:18px;
}
}
@media (max-width:991px){
    .gig-details{
        margin-top:25px;
    }
}
.calendar-wrapper{
    overflow-x:auto;
    overflow-y:hidden;
    width:100%;
    padding-bottom:10px;
}
.has-gig{
    cursor:pointer;
}
.has-gig:hover{
    border-color:#198754;
}
.calendar-scroll{
    overflow-x:auto;
    overflow-y:hidden;
    width:100%;
}
.day-past{
    background:#f3f4f6;
    opacity:.65;
}
.day-past .day-number{
    color:#9ca3af;
}
.day-current{
    background:#eefaf2;
    border:2px solid #28a745;
}
.day-upcoming{
    background:#eaeaea;
}
.today{
   background: #876226;
    background: linear-gradient(90deg, rgba(135, 98, 38, 1) 0%, rgba(214, 165, 86, 1) 50%, rgba(237, 221, 83, 1) 100%);
    color:#fff;
    border-color:#e0b511;
}
.day-past .gig-badge{
    background:#adb5bd;
}
.day-current .gig-badge,
.day-upcoming .gig-badge{
    background:#198754;
}
.monday-closed{
    background:#f3f4f6;
    border:1px dashed #cfd4da;
    color:#6c757d;
    cursor:not-allowed;
    opacity:.75;
}

.monday-closed:hover{
    transform:none;
    box-shadow:none;
}

.closed-badge{
    margin-top:auto;
    background:#dc3545;
    color:#fff;
    text-align:center;
    border-radius:8px;
    padding:6px;
    font-size:11px;
    font-weight:700;
    letter-spacing:.5px;
}

#gigTitle{
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
}
#gigArtist{
    color: #ffc107;
    font-size: 18px;
    font-weight: 500;
}

#gigInfo{
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
   
}
#gigDescription{
     margin-bottom: 10px;
}

#noGigMessage{
    color: #FFF;
}







