/* RehberIzmir Events Pro - V1.4 - View Switcher & Calendar Support */

.riz-view-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 50px;
    border: 1px solid #eee;
}

.riz-view-btn {
    border: none;
    background: none;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    color: #666;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.riz-view-btn.active {
    background: #E31E24;
    color: #fff;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
}

/* Calendar Overwrites */
.fc .fc-button-primary {
    background-color: #E31E24 !important;
    border-color: #E31E24 !important;
}

.fc-event {
    cursor: pointer;
    background-color: rgba(227, 30, 36, 0.1) !important;
    border: 1px solid #E31E24 !important;
    color: #E31E24 !important;
    padding: 2px 5px !important;
    border-radius: 4px !important;
}

/* Rest of V1.3 Styles */
.riz-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.riz-filter-btn {
    background: #f4f4f4;
    border: 1px solid #ddd;
    padding: 8px 18px;
    border-radius: 25px;
    cursor: pointer;
}

.riz-filter-btn.active {
    background: #E31E24;
    color: #fff;
}

.riz-events-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.riz-event-item {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.riz-event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 12px;
    font-weight: 800;
    color: #E31E24;
    z-index: 5;
    border: 1px solid #eee;
}

.riz-event-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.riz-event-content {
    padding: 20px;
}

.riz-event-title {
    font-size: 1.3rem !important;
    color: #1A1A1A !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
}

.riz-event-actions {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
}

.riz-notify-btn {
    background: #E31E24;
    color: #fff !important;
    border: none;
    padding: 10px 22px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
}

.riz-go-btn {
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 700;
}