.login-body {
    min-height: 100vh;
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #070b18;
    color: #fff;
    overflow-x: hidden;
}

.login-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at top left, rgba(0, 119, 255, .38), transparent 34%),
        radial-gradient(circle at bottom right, rgba(0, 255, 213, .22), transparent 34%),
        linear-gradient(135deg, #070b18, #101832);
}

.login-bg span {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    animation: loginFloat 12s infinite linear;
}

.login-bg span:nth-child(1) {
    top: 16%;
    left: 10%;
}

.login-bg span:nth-child(2) {
    top: 20%;
    right: 12%;
    animation-delay: 2s;
}

.login-bg span:nth-child(3) {
    bottom: 14%;
    left: 18%;
    animation-delay: 4s;
}

.login-bg span:nth-child(4) {
    bottom: 18%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes loginFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: .25;
    }

    50% {
        transform: translateY(-45px) scale(1.18);
        opacity: .55;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: .25;
    }
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 18px;
}

.login-card {
    width: 100%;
    max-width: 460px;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    color: #101828;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
    border: 1px solid rgba(255, 255, 255, .22);
    animation: loginUp .55s ease both;
}

@keyframes loginUp {
    from {
        opacity: 0;
        transform: translateY(25px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-brand{
    text-align:center;
    margin-bottom:30px;
}

.login-logo-img{
    width:120px;
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto 20px;
    filter:drop-shadow(0 0 20px rgba(0,110,255,.25));
}

.login-logo {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #006eff, #00d4ff);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 110, 255, .28);
}

.login-brand strong {
    display: block;
    font-size: 18px;
}

.login-brand small {
    display: block;
    color: #667085;
    margin-top: 2px;
}

.login-alert {
    padding: 13px 15px;
    border-radius: 15px;
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    font-size: 14px;
    margin-bottom: 18px;
}

.login-form {
    display: grid;
    gap: 17px;
}

.login-field {
    display: grid;
    gap: 8px;
}

.login-field label {
    font-size: 14px;
    font-weight: 800;
    color: #344054;
}

.login-field input {
    width: 100%;
    height: 52px;
    border: 1px solid #d0d5dd;
    border-radius: 15px;
    padding: 0 15px;
    font-size: 15px;
    outline: none;
    background: #f9fafb;
    color: #101828;
    transition: .25s;
    box-sizing: border-box;
}

.login-field input:focus {
    border-color: #00a6ff;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 166, 255, .13);
}

.password-wrap {
    position: relative;
}

.password-wrap input {
    padding-right: 78px;
}

.password-wrap button {
    position: absolute;
    right: 8px;
    top: 8px;
    height: 36px;
    border: none;
    border-radius: 11px;
    padding: 0 12px;
    background: #eef6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.login-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #006eff, #00d4ff);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: .25s;
    margin-top: 4px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 110, 255, .35);
}

.login-footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #667085;
    font-size: 13px;
}

@media (max-width: 560px) {
    /* Sayfayı grid sistemine geçirip yüksekliğini kilitliyoruz */
    .login-page {
        display: grid !important;
        place-items: center !important; /* Hem yatayda hem dikeyde milimetrik ortalar */
        min-height: 120vh !important;
        height: 100dvh !important; /* Mobil tarayıcı barları için dinamik yükseklik */
        padding: 16px !important;
        box-sizing: border-box !important;
    }

    /* Kartı ortalandığı yerden birazcık yukarı çekiyoruz */
    .login-card {
        margin: 0 auto !important;
        padding: 26px 18px !important;
        border-radius: 24px !important;
        
        /* Kartı kendi yüksekliğinin %15'i kadar yukarı kaydırır */
        transform: translateY(-15%) !important; 
        animation: none !important; /* Eğer varsa giriş animasyonunun transformu ezmesini engeller */
    }

    .login-header h1 {
        font-size: 29px;
    }

    .login-logo {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
}

.login-brand{
    text-align:center;
    margin-bottom:35px;
    position:relative;
}

.login-logo-img{
    width:220px;
    max-width:100%;
    height:auto;
    display:block;
    margin:auto;
    filter:
        drop-shadow(0 0 25px rgba(0,110,255,.25))
        drop-shadow(0 0 45px rgba(0,212,255,.15));
}

.login-brand::before{
    content:"";
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(0,110,255,.10);
    filter:blur(40px);
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

.login-card{
    width:100%;
    max-width:500px;
    padding:30px;
}

.login-brand{
    text-align:center;
    margin-bottom:30px;
    position:relative;
}

.login-logo-img{
    width:220px;
    max-width:100%;
    display:block;
    margin:auto;
}

.login-subtitle{
    margin-top:-10px;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#64748b;
}

.login-alert-bottom {
    margin-top: 18px;
    margin-bottom: 0;
    text-align: center;
}

.login-btn:disabled,
.login-field input:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.password-wrap button:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.login-security {
    margin-top: 16px;
    padding: 11px 13px;
    border-radius: 13px;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.login-logo-img {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

/* panel.php */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    min-height: 100vh;
    color: #101828;
    background:
        radial-gradient(circle at top left, rgba(0,119,255,.35), transparent 32%),
        radial-gradient(circle at bottom right, rgba(0,255,213,.22), transparent 35%),
        linear-gradient(135deg, #070b18, #101832);
}

.layout {
    min-height: 100vh;
    display: flex;
}

/* SIDEBAR */
.sidebar {
    width: 270px;
    height: 100vh;
    padding: 24px 18px;
    background: rgba(7, 11, 24, .94);
    border-right: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(22px);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    z-index: 50;
}

.sidebar-logo {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    flex-shrink: 0;
}

.sidebar-logo img {
    width: 165px;
    max-width: 100%;
    height: auto;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    overflow-y: auto;
    padding-right: 2px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 15px;
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-weight: 800;
    transition: .25s;
}

.sidebar-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
}

.sidebar-nav a.active {
    color: #fff;
    background: linear-gradient(135deg, #006eff, #00d4ff);
    box-shadow: 0 14px 32px rgba(0,110,255,.28);
}

.logout-btn {
    flex-shrink: 0;
    margin-top: 18px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 15px;
    background: #dc2626;
    color: #fff !important;
    font-weight: 900;
    text-decoration: none;
}

.logout-btn:hover {
    background: #b91c1c;
}

/* MOBIL UST BAR */
.mobile-topbar {
    display: none;
}

.sidebar-overlay {
    display: none;
}

/* MAIN */
.main {
    flex: 1;
    min-width: 0;
    padding: 28px;
}

.panel-topbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 25px;
    margin-bottom: 22px;
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 24px 70px rgba(0,0,0,.20);
    backdrop-filter: blur(20px);
}

.page-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 10px;
}

.panel-topbar h1 {
    margin: 0;
    font-size: 34px;
}

.panel-topbar p {
    margin: 7px 0 0;
    color: #667085;
}

.topbar-date {
    min-width: 120px;
    text-align: center;
    padding: 14px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, #101828, #1d2939);
    color: #fff;
    font-size: 13px;
}

.topbar-date strong {
    display: block;
    font-size: 23px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.stat-card {
    padding: 23px;
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 50px rgba(0,0,0,.15);
    backdrop-filter: blur(20px);
}

.stat-card span {
    display: block;
    margin: 0 0 12px;
    color: #667085;
    font-size: 14px;
    font-weight: 800;
}

.stat-card strong {
    font-size: 40px;
    line-height: 1;
}

/* TALEP ALANI */
.request-section {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 24px 70px rgba(0,0,0,.20);
    backdrop-filter: blur(20px);
}

.table-head {
    padding: 22px 24px;
    border-bottom: 1px solid #eef2f7;
}

.table-head h2 {
    margin: 0;
    font-size: 23px;
}

.table-head p {
    margin: 6px 0 0;
    color: #667085;
}

.request-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 22px;
}

.request-card {
    min-width: 0;
    overflow: hidden;
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15,23,42,.07);
}

.request-card-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.request-card h3 {
    margin: 0 0 5px;
    font-size: 19px;
    color: #101828;
}

.request-card span {
    color: #667085;
    font-size: 13px;
}

.request-card h3,
.request-card span,
.request-info strong {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.request-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.request-info div {
    min-width: 0;
    padding: 13px;
    border-radius: 15px;
    background: #f8fafc;
}

.request-info small {
    display: block;
    margin-bottom: 5px;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
}

.request-info strong {
    display: block;
    color: #101828;
    font-size: 14px;
}

.badge {
    flex-shrink: 0;
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.badge-ok {
    background: #ecfdf3;
    color: #027a48 !important;
}

.badge-new {
    background: #fff7ed;
    color: #c2410c !important;
}

.detail-btn {
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #006eff, #00d4ff);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
}

.empty-state {
    padding: 45px 25px;
    text-align: center;
}

.empty-state p {
    color: #667085;
}

/* PAGINATION - MASAUSTU SAG ALT */
.pagination {
    display: flex;
    gap: 8px;
    padding: 0 22px 22px;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    background: #f1f5f9;
    color: #334155;
}

.pagination a.active {
    background: linear-gradient(135deg, #006eff, #00d4ff);
    color: #fff;
}

/* TABLET */
@media (max-width: 1100px) {
    .request-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBIL */
@media (max-width: 900px) {
    .layout {
        display: block;
    }

    .mobile-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
        padding: 12px 15px;
        border-radius: 18px;
        background: rgba(255,255,255,.10);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,.10);
    }

    .mobile-menu-btn {
        width: 46px;
        height: 46px;
        border: none;
        border-radius: 14px;
        background: linear-gradient(135deg, #006eff, #00d4ff);
        color: #fff;
        font-size: 22px;
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-topbar img {
        width: 110px;
        height: auto;
    }

    @media (max-width: 900px) {
        
    .sidebar {
        position: fixed !important;
        left: -290px;
        top: 0;
        bottom: 0;
        width: 280px;
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
        z-index: 9999;
        transition: left .28s ease;
    }

    .sidebar.open {
        left: 0;
    }

    .sidebar-nav {
        flex: 1;
        overflow-y: auto;
        padding-bottom: 15px;
    }

    .logout-btn {
        margin-top: auto;
        flex-shrink: 0;
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(0,0,0,.55);
        z-index: 9998;
    }

    .sidebar-overlay.show {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }
}

    .main {
        padding: 16px 12px;
    }

    .panel-topbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 22px;
    }

    .panel-topbar h1 {
        font-size: 27px;
    }

    .topbar-date {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .request-grid {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .request-info {
        grid-template-columns: 1fr;
    }

    .request-card-top {
        flex-direction: column;
    }

    .badge {
        width: fit-content;
    }

    .pagination {
        justify-content: center;
        padding: 0 14px 18px;
    }
}

@media (max-width: 480px) {
    .main {
        padding: 14px 10px;
    }

    .panel-topbar h1 {
        font-size: 25px;
    }

    .request-card {
        padding: 16px;
    }
}
/* panel.php */


/* kullancılar */

.topbar-action {
    flex-shrink: 0;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 15px;
    background: linear-gradient(135deg, #006eff, #00d4ff);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(0,110,255,.28);
}

.user-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 22px;
}

.user-card {
    min-width: 0;
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15,23,42,.07);
}

.user-card-top {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.user-avatar {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #006eff, #00d4ff);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.user-title {
    min-width: 0;
}

.user-title h3 {
    margin: 0 0 7px;
    color: #101828;
    font-size: 19px;
    overflow-wrap: anywhere;
}

.user-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.user-info div {
    min-width: 0;
    padding: 13px;
    border-radius: 15px;
    background: #f8fafc;
}

.user-info div.full {
    grid-column: 1 / -1;
}

.user-info small {
    display: block;
    margin-bottom: 5px;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
}

.user-info strong {
    display: block;
    color: #101828;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.user-info span {
    display: block;
    margin-top: 4px;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.user-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.danger-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

.disabled-btn {
    background: #e5e7eb !important;
    color: #64748b !important;
    cursor: not-allowed;
    border: none;
}

@media (max-width: 1100px) {
    .user-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .topbar-action {
        width: 100%;
    }

    .user-grid {
        grid-template-columns: 1fr;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .user-actions {
        grid-template-columns: 1fr;
    }
}

/* kullancılar */

/* detay.php */
.detail-grid-modern {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, .75fr);
    gap: 22px;
    align-items: start;
}

.detail-left {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.detail-card,
.reply-form-card {
    min-width: 0;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 24px 70px rgba(0,0,0,.20);
    backdrop-filter: blur(20px);
}

.reply-form-card {
    position: sticky;
    top: 28px;
}

.detail-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.detail-card-head h2 {
    margin: 0;
    font-size: 23px;
    color: #101828;
}

.detail-card-head p {
    margin: 6px 0 0;
    color: #667085;
    line-height: 1.5;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.detail-info-grid div {
    min-width: 0;
    padding: 13px;
    border-radius: 15px;
    background: #f8fafc;
}

.detail-info-grid div.full {
    grid-column: 1 / -1;
}

.detail-info-grid small,
.message-box small {
    display: block;
    margin-bottom: 5px;
    color: #667085;
    font-size: 12px;
    font-weight: 900;
}

.detail-info-grid strong {
    display: block;
    color: #101828;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.message-box {
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
}

.message-box p {
    margin: 0;
    color: #344054;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.reply-count {
    flex-shrink: 0;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
}

.reply-list {
    display: grid;
    gap: 12px;
}

.reply-card {
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.reply-card summary {
    cursor: pointer;
    list-style: none;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.reply-card summary::-webkit-details-marker {
    display: none;
}

.reply-card summary strong {
    display: block;
    color: #101828;
    overflow-wrap: anywhere;
}

.reply-card summary small {
    display: block;
    margin-top: 4px;
    color: #667085;
    font-size: 12px;
}

.reply-card summary span {
    flex-shrink: 0;
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
}

.reply-content {
    padding: 0 16px 16px;
    color: #344054;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.panel-form {
    display: grid;
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    color: #344054;
    font-size: 14px;
    font-weight: 900;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 15px;
    padding: 14px 15px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    background: #f9fafb;
    color: #101828;
    transition: .25s;
}

.form-field textarea {
    min-height: 230px;
    resize: vertical;
    line-height: 1.6;
}

.form-field input:focus,
.form-field textarea:focus {
    background: #fff;
    border-color: #00a6ff;
    box-shadow: 0 0 0 4px rgba(0,166,255,.13);
}

.form-warning {
    padding: 14px 15px;
    border-radius: 16px;
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    font-weight: 800;
    line-height: 1.5;
}

.small-empty {
    padding: 25px 15px;
}

@media (max-width: 1150px) {
    .detail-grid-modern {
        grid-template-columns: 1fr;
    }

    .reply-form-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .detail-card,
    .reply-form-card {
        padding: 18px;
        border-radius: 24px;
    }

    .detail-card-head {
        flex-direction: column;
    }

    .detail-info-grid {
        grid-template-columns: 1fr;
    }

    .detail-info-grid div.full {
        grid-column: auto;
    }

    .reply-card summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .reply-card summary span {
        width: 100%;
        justify-content: center;
        display: flex;
    }
}

.form-success {
    margin-top: 15px;
    padding: 14px 15px;
    border-radius: 16px;
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #bbf7d0;
    font-weight: 800;
    line-height: 1.5;
}

.form-warning {
    margin-top: 15px;
}

.topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.topbar-actions form {
    margin: 0;
}

.topbar-actions .topbar-action {
    min-width: 130px;
}

.danger-action {
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

@media (max-width: 900px) {
    .topbar-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .topbar-actions form {
        width: 100%;
    }

    .topbar-actions .topbar-action {
        width: 100%;
        min-width: 0;
    }
}
/* detay.php */


/* kullanıcı duzenleme */

.panel-message {
    margin-bottom: 18px;
}

.user-actions form {
    margin: 0;
}

.user-actions button {
    border: none;
    cursor: pointer;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.62);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal-overlay.show {
    display: flex;
}

.user-modal {
    width: 100%;
    max-width: 460px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.modal-head h2 {
    margin: 0;
    color: #101828;
}

.modal-head p {
    margin: 6px 0 0;
    color: #667085;
}

.modal-head button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 13px;
    background: #f1f5f9;
    color: #101828;
    font-size: 24px;
    cursor: pointer;
}

.field-note {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

/* kullanıcı */