.panel-container {
    padding: 25px;
    background: #f8fafc;
}

/* HEADER */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.panel-title {
    font-size: 24px;
    font-weight: 600;
}

.panel-subtitle {
    font-size: 13px;
    color: #64748b;
}

/* KART */
.panel-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #f1f5f9;
}

.panel-card-value {
    font-size: 26px;
    font-weight: bold;
}

.panel-card-title {
    font-size: 12px;
    color: #64748b;
}

/* DURUM */
.panel-status {
    font-size: 12px;
}

.status-active {
    color: green;
}

.status-passive {
    color: red;
}

.status-pending {
    color: orange;
}

.status-null {
    color: gray;
}

/* LİST */
.panel-list-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
}

.panel-list-header {
    padding: 12px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.panel-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px dashed #eee;
}

.panel-item-title {
    font-size: 14px;
}

.panel-item-date {
    font-size: 11px;
    color: #999;
}

.panel-btn {
    font-size: 11px;
    border: 1px solid #3b82f6;
    padding: 4px 8px;
    border-radius: 5px;
    color: #3b82f6;
}

/* BADGE */
.panel-badge {
    background: #3b82f6;
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
}


.uye-page {
    padding: 24px;
    background: #f8fafc;
    min-height: 100vh;
}

.uye-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

    .uye-header h1 {
        font-size: 26px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 4px;
    }

    .uye-header p {
        color: #64748b;
        margin: 0;
        font-size: 14px;
    }

.uye-create-btn {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

    .uye-create-btn:hover {
        background: #1d4ed8;
        color: #fff;
    }

.uye-stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .uye-stat-card i {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        background: #f1f5f9;
    }

    .uye-stat-card span {
        display: block;
        font-size: 13px;
        color: #64748b;
    }

    .uye-stat-card strong {
        display: block;
        font-size: 28px;
        color: #0f172a;
        line-height: 1;
        margin-top: 6px;
    }

    .uye-stat-card.total i {
        color: #2563eb;
        background: #dbeafe;
    }

    .uye-stat-card.active i {
        color: #16a34a;
        background: #dcfce7;
    }

    .uye-stat-card.passive i {
        color: #dc2626;
        background: #fee2e2;
    }

    .uye-stat-card.neutral i {
        color: #64748b;
        background: #f1f5f9;
    }

.uye-search-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr 190px auto auto;
    gap: 10px;
    align-items: center;
}

.uye-search-main {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
}

    .uye-search-main i {
        color: #64748b;
    }

    .uye-search-main input {
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        padding: 12px 0;
        font-size: 14px;
        color: #0f172a;
    }

.uye-search-box select {
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 14px;
    padding: 12px;
    font-size: 14px;
    outline: none;
}

.uye-search-box button {
    border: none;
    background: #2563eb;
    color: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    font-weight: 600;
}

.uye-clear-btn {
    text-decoration: none;
    background: #f1f5f9;
    color: #334155;
    border-radius: 14px;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.uye-result-info {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 12px;
}

.uye-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.uye-accordion-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
}

.uye-accordion-head {
    width: 100%;
    border: none;
    background: #fff;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

    .uye-accordion-head:hover {
        background: #f8fafc;
    }

.uye-head-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.uye-avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    overflow: hidden;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 21px;
    flex-shrink: 0;
}

    .uye-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.uye-head-left h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.uye-head-left p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.uye-head-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.uye-no {
    font-size: 12px;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 10px;
    border-radius: 999px;
}

.uye-status {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
}

    .uye-status.aktif {
        background: #dcfce7;
        color: #15803d;
    }

    .uye-status.pasif {
        background: #fee2e2;
        color: #b91c1c;
    }

    .uye-status.belirsiz {
        background: #f1f5f9;
        color: #475569;
    }

.uye-chevron {
    color: #64748b;
    transition: transform .2s ease;
}

.uye-accordion-head[aria-expanded="true"] .uye-chevron {
    transform: rotate(180deg);
}

.uye-accordion-body {
    padding: 18px;
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
}

.uye-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.uye-detail-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 12px;
}

    .uye-detail-box small,
    .uye-address-box small {
        display: block;
        color: #94a3b8;
        font-size: 11px;
        margin-bottom: 4px;
    }

    .uye-detail-box strong {
        color: #0f172a;
        font-size: 13px;
        word-break: break-word;
    }

.uye-address-box {
    margin-top: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 12px;
}

    .uye-address-box p {
        margin: 0;
        color: #334155;
        font-size: 13px;
    }

.uye-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
}

    .uye-actions a {
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        padding: 8px 12px;
        border-radius: 10px;
    }

.btn-detail {
    background: #f8fafc;
    color: #334155;
}

.btn-edit {
    background: #eff6ff;
    color: #2563eb;
}

.btn-delete {
    background: #fef2f2;
    color: #dc2626;
}

.uye-empty {
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    padding: 24px;
    color: #64748b;
    text-align: center;
}

@media (max-width: 992px) {
    .uye-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .uye-head-right {
        gap: 6px;
    }

    .uye-search-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .uye-page {
        padding: 14px;
    }

    .uye-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .uye-create-btn {
        width: 100%;
        text-align: center;
    }

    .uye-accordion-head {
        align-items: flex-start;
        gap: 12px;
    }

    .uye-head-right {
        flex-direction: column;
        align-items: flex-end;
    }

    .uye-detail-grid {
        grid-template-columns: 1fr;
    }

    .uye-actions {
        flex-direction: column;
    }

        .uye-actions a {
            text-align: center;
        }
}