﻿html, body {
    margin: 0;
    padding: 0;
}

.profile-section {
    background-color: #007bff;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    box-sizing: border-box;
    position: relative;
}

    .profile-section.full-bleed {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

/* Profil fotoğrafı */
.profile-photo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
    display: inline-block;
}

/* Profil ismi */
.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

/* Profil unvanı */
.profile-title {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

/* Geri butonu */
.header-back {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    z-index: 2;
}

    .header-back svg {
        width: 50px;
        height: 32px;
    }

    .header-back:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

/* Mobil uyum */
@media (max-width: 480px) {
    .header-back {
        left: 10px;
        width: 36px;
        height: 36px;
    }
}
.profile-section {
    position: relative;
}

.profile-dropdown {
    position: relative;
    display: inline-block;
}

.profile-action[hidden] {
    display: none !important;
}

.profile-action {
    display: flex;
    justify-content: center;
    margin-top: .5rem;
}

.btn-pill {
    background: #fff;
    color: #0d6efd;
    border: 0;
    border-radius: 9999px;
    padding: .45rem 1.05rem;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
    text-decoration: none;
    display: inline-block;
}

    .btn-pill:hover {
        filter: brightness(0.98);
    }

    .btn-pill:active {
        transform: translateY(1px);
    }
