.badge {
    display: flex;
    align-items: center;
	justify-self: center;
    padding: 8px 16px;
    border-radius: 50px;
    margin: 10px;
    color: white;
    font-family: Arial, sans-serif;
    width: fit-content;
}

.verified {
    background-color: #4CAF50;
}

.unverified {
    background-color: #9E9E9E;
}

.icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.verified .icon-circle {
    background-color: #388E3C;
}

.unverified .icon-circle {
    background-color: #616161;
}

.badge-text {
    font-size: 14px;
}

/* PHP değişkeni için stil */
.city-name {
    font-weight: bold;
}


/* Bugün x posta çalışıyor */
#current-shift-info {
    text-align: center;
    font-size: 18px;
    margin: 10px 0;
	display:block;
}

/* Takvim Kontrol Alanı */
#my-calendar-controls {
    text-align: center;
}
.form-control {
    display: inline-block;
    width: auto;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.btn {
    padding: 10px 15px;
    border-radius: 4px;
    background-color: var(--brand-color); /* Jannah teması ile uyumlu mavi renk */
    color: white;
}
.btn:hover {
    background-color: var(--dark-brand-color); /* Buton üzerine gelince koyulaşan renk */
}

/* Takvim Alanı */
#my-calendar {
    margin-top: 20px;
    min-height: 253px;
    text-align: -webkit-center;
}

.year-view {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
		place-items: center;
}
.month {
    padding: 10px;
    box-sizing: border-box;
    background: #f260001a;
    border-radius: 3px;
    padding: 10px;
		max-width: 284px;
		width: 100%;

}
.month-header {
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.current-month {
    background-color: #e74c3c57; /* Bulunduğunuz ayın başlığı için renk */
}
.month-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    color: white;
}
.day {
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 3px;
}
.current-day {
    font-weight: bold;
    border-radius: 50%;
    position: relative;
}
.current-day:before {
    border-radius: 50%;
    border-style: solid;
    border-width: 4px;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    animation-duration: 1s;
    animation-name: ripple-out;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
}
.hidden {
    display: none;
}

.nav-buttons {
    text-align: center;
    margin: 10px 0;
}
code {
    background-color: unset !important;
}
.shortc-button.medium {
    min-width: unset !important;
}

/* Renk Açıklama Alanı */
#legend {
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px; /* Açıklama öğeleri arasındaki boşluk */
}

.legend-item {
    display: flex;
    align-items: center;
}

.color-box {
    width: 20px;
    height: 20px;
    margin-right: 10px;
		border-radius: 3px;
}

/* Animasyon */
@keyframes ripple-out {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: -8px;
        right: -8px;
        bottom: -8px;
        left: -8px;
        opacity: 0;
    }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
    .year-view {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 768px) {
    .year-view {
        grid-template-columns: repeat(1, 1fr);
    }
}