/* Content-wrapper: Sayfanın tüm yüksekliğini kapsar */
.content-wrapper {
    min-height: calc(100vh - 56px); /* Ekranın tamamını kapla */
    padding-bottom: 20px; /* Alt kısma boşluk bırak */
}

/* Body ve HTML yüksekliği tam boyut için ayarlanır */
html, body {
    height: 100%;
}

.wrapper {
    min-height: 100%; /* Wrapper tüm ekranı kapsar */
}

/* Durum renkleri */
.text-danger {
    color: #dc3545 !important; /* Kırmızı */
}

.text-success {
    color: #28a745 !important; /* Yeşil */
}
border-radius: 50%;
width: 15px;
height: 15px;
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    font-weight: bold;
}
.balloon-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.balloon {
    width: 50px;
    height: 70px;
    background: radial-gradient(circle, #ff5050, #ff0000);
    border-radius: 50% 50% 50% 50%;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.balloon:hover {
    transform: scale(1.1);
}

.balloon::after {
    content: '';
    width: 2px;
    height: 20px;
    background: white;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

.balloon.pop {
    animation: pop 0.5s forwards;
}

@keyframes pop {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.1);
        opacity: 0;
    }
}