/* Logo Area */
.logo-area {
    text-align: center;
    margin-bottom: 18px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Kart Üzerindeki Tema Butonu */
.card-theme-toggle {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    color: var(--mayta-blue);
    z-index: 50;
}

.card-theme-toggle:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}