/* Gig Calendar Styles */
.paulik-gig-calendar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.paulik-gig-calendar h2 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.no-gigs {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.gigs-list {
    display: grid;
    gap: 25px;
}

.gig-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gig-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gig-date {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gig-date .month {
    font-size: 0.9em;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.9;
}

.gig-date .day {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1;
    margin: 5px 0;
}

.gig-date .year {
    font-size: 0.85em;
    opacity: 0.9;
}

.gig-details {
    flex: 1;
}

.gig-title {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    color: #333;
}

.gig-venue {
    margin: 5px 0;
    font-size: 1.1em;
    color: #555;
}

.gig-meta {
    display: flex;
    gap: 20px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.gig-time {
    color: #666;
    font-size: 0.95em;
}

.gig-cover {
    color: #666;
    font-size: 0.95em;
    padding: 4px 10px;
    background: #fff3cd;
    border-radius: 4px;
    border: 1px solid #ffc107;
}

.gig-cover.no-cover {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.gig-description {
    margin: 12px 0;
    color: #666;
    line-height: 1.5;
}

.gig-address {
    margin: 8px 0;
    font-size: 0.95em;
}

.gig-address a {
    color: #667eea;
    text-decoration: none;
}

.gig-address a:hover {
    text-decoration: underline;
}

.facebook-link {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: #1877f2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    transition: background 0.3s;
}

.facebook-link:hover {
    background: #145dbf;
}

/* Booking Form Styles */
.paulik-booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.paulik-booking-form h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
}

.paulik-booking-form > p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.booking-form .form-row {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.booking-form textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.booking-success {
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    color: #155724;
}

.booking-success h3 {
    margin: 0 0 10px 0;
    font-size: 1.3em;
}

/* Admin Styles */
.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 10000 !important;
}

.ui-menu-item {
    padding: 8px 12px;
}

.ui-menu-item:hover {
    background: #667eea;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gig-item {
        flex-direction: column;
    }
    
    .gig-date {
        width: auto;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .gig-date .day {
        font-size: 2em;
    }
    
    .gig-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .paulik-booking-form {
        padding: 20px;
    }
}
