﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700,900');

.main-content {
    background-color: #f2f2f2 !important;
    font-family: 'Poppins' !important;
}

.card {
    border: var(--bs-card-border-width) solid #9ACD66 !important;
    padding: 2rem !important;
    margin: 85px 0px 1px 8px !important;
    border-radius: 1.2rem;
}

h2 {
    font-size: 1.5rem !important;
    color: #0175C0 !important;
    padding: 1rem 0 !important;
    font-weight:600;
}
.divmrg {
    padding-right: 0px !important;
}

.card-header {
    background-color: transparent !important;
}

.bolge-alt-cizgi {
    max-width: 100% !important;
    height: 1px !important;
    background-color: #9ACD66 !important;
    margin: 0 auto 50px auto !important;
}

.event-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.date-box {
    background-color: cornflowerblue;
    color: white;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    position: relative;
    font-weight: bold;
}

    .date-box::before {
        content: '';
        width: 6px;
        height: 6px;
        background-color: white;
        border-radius: 50%;
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .date-box .day {
        font-size: 28px;
    }

    .date-box .month-year {
        font-size: 16px;
        margin-top: 5px;
    }

.event-content {
    flex: 1;
    padding-left: 30px;
}

.event-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.calendar-button {
    display: inline-block;
    padding: 10px 20px;
    border: 1.5px solid cornflowerblue;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    color: cornflowerblue;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .calendar-button:hover {
        background-color: cornflowerblue;
        color: white;
    }

.dropdown-container {
    position: relative;
    display: inline-block;
}

.calendar-button {
    padding: 10px 20px;
    border: 1.5px solid cornflowerblue;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    color: cornflowerblue;
    background-color: white;
    cursor: pointer;
}

    .calendar-button:hover {
        background-color: cornflowerblue;
        color: white;
    }

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    min-width: 160px;
    z-index: 1;
    margin-top: 5px;
}

    .dropdown-menu a {
        color: cornflowerblue;
        padding: 10px 15px;
        text-decoration: none;
        display: block;
        border-bottom: 1px solid #eee;
    }

        .dropdown-menu a:last-child {
            border-bottom: none;
        }

        .dropdown-menu a:hover {
            background-color: #f5f5f5;
        }

