:root {
    --bg-color: #f8fafc;
    --accent-color: #2563eb;
    --accent-strong: #1d4ed8;
    --accent-light: #3b82f6;
    --accent-glow: rgba(37, 99, 235, 0.15);
    --panel-bg: #ffffff;
    --panel-muted: #f8fbff;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(37, 99, 235, 0.24);
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --success-soft: #edf8f0;
    --success-text: #2e6b43;
    --warning-soft: #fff5df;
    --warning-text: #8a6730;
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    --card-hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(59, 130, 246, 0.25);
    --panel-radius: 16px;
    --field-radius: 12px;
    --topbar-height: 86px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
    background-image: none;
}

body.with-topbar {
    padding: var(--topbar-height) 0 0;
    display: block;
}

.admin-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: 220px minmax(280px, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    backdrop-filter: saturate(130%) blur(4px);
}

.admin-topbar-brand {
    display: inline-flex;
    align-items: center;
}

.admin-topbar-brand img {
    width: 188px;
    max-width: 100%;
    height: auto;
    display: block;
}

.admin-topbar-center {
    display: flex;
    justify-content: center;
}

.admin-search {
    width: min(560px, 100%);
    position: relative;
}

.admin-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.admin-search input {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px 12px 44px;
    border-radius: 999px;
    background: #fff;
}

.admin-topbar-right {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-dropdown {
    position: relative;
}

.admin-dropdown-toggle {
    appearance: none;
    cursor: pointer;
}

.admin-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    display: none;
    flex-direction: column;
    gap: 8px;
}

.admin-dropdown.open .admin-dropdown-menu {
    display: flex;
}

.admin-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    background: transparent;
}

.admin-dropdown-item:hover {
    background: #eff6ff;
    color: var(--accent-strong);
}

.admin-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    color: var(--text-primary);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.admin-topbar-link.primary {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.admin-topbar-dev {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 4px 2px;
}

.admin-topbar-dev small {
    color: var(--text-secondary);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-topbar-dev strong {
    font-size: 0.94rem;
}

.admin-main {
    padding: 28px 24px 36px;
}

.page-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.page-toolbar.compact-start {
    justify-content: flex-start;
}

.page-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.app-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.app-heading-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
    background: #fff;
}

.confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.28);
}

.confirm-overlay[hidden] {
    display: none;
}

.confirm-dialog {
    width: min(100%, 520px);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
    padding: 28px 28px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.94);
}

.confirm-dialog h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.confirm-dialog p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.55;
}

.confirm-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.dialog-btn {
    min-width: 150px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: var(--text-primary);
    cursor: pointer;
}

.dialog-btn.primary {
    border-color: rgba(37, 99, 235, 0.14);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
}

.dialog-btn.danger {
    border-color: rgba(220, 38, 38, 0.14);
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
}

.toast-overlay {
    position: fixed;
    inset: 0;
    z-index: 1450;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.22);
}

.toast-overlay[hidden] {
    display: none;
}

.toast-dialog {
    width: min(100%, 520px);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
    padding: 28px 28px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
}

.toast-dialog.success {
    border-color: rgba(34, 197, 94, 0.18);
}

.toast-dialog.error {
    border-color: rgba(220, 38, 38, 0.18);
}

.toast-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.7rem;
    color: #fff;
}

.toast-dialog.success .toast-icon {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 16px 34px rgba(34, 197, 94, 0.24);
}

.toast-dialog.error .toast-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 16px 34px rgba(239, 68, 68, 0.24);
}

.toast-dialog h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.toast-dialog p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.55;
}

.toast-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 1;
    animation: floatAnim 18s infinite alternate ease-in-out;
}

.shape-circle-1 {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 102, 204, 0.45) 0%, rgba(102, 102, 204, 0.1) 100%);
    top: -80px;
    left: -180px;
}

.shape-circle-2 {
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 223, 83, 0.45) 0%, rgba(121, 223, 83, 0.1) 100%);
    bottom: -180px;
    right: -250px;
    animation-delay: -5s;
    animation-duration: 25s;
}

.shape-circle-3 {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 199, 203, 0.4) 0%, transparent 100%);
    top: 35%;
    right: -120px;
    animation-delay: -10s;
    animation-duration: 18s;
}

.shape-line {
    width: 1400px;
    height: 5px;
    background: linear-gradient(90deg, transparent, rgba(252, 183, 57, 0.6), transparent);
    top: 20%;
    left: -400px;
    transform: rotate(35deg);
    animation: slideLine 20s infinite linear;
}

.shape-line-2 {
    width: 1000px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(247, 74, 70, 0.6), transparent);
    bottom: 15%;
    right: -300px;
    transform: rotate(-25deg);
    animation: slideLineRev 18s infinite linear;
}

.container {
    width: 100%;
    max-width: 900px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.shape-dots {
    width: 350px;
    height: 350px;
    background-image: radial-gradient(rgba(102, 102, 204, 0.7) 3.5px, transparent 3.5px);
    background-size: 30px 30px;
    top: 60%;
    left: 5%;
    opacity: 0.9;
    animation: floatAnim 35s infinite alternate linear;
}

.shape-circle-center {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 199, 203, 0.25) 0%, transparent 100%);
    top: 50%;
    left: 45%;
    animation-duration: 30s;
}

.shape-triangle-1 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(252, 183, 57, 0.15);
    top: 15%;
    left: 25%;
    animation: rotateFloat 25s infinite linear;
}

.shape-triangle-2 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 138px solid rgba(247, 74, 70, 0.15);
    bottom: 30%;
    right: 30%;
    animation: rotateFloat 20s infinite linear reverse;
}

.shape-square-1 {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(121, 223, 83, 0.2);
    top: 60%;
    right: 15%;
    border-radius: 20px;
    animation: rotateFloat 35s infinite linear;
}

.shape-square-2 {
    width: 100px;
    height: 100px;
    background: rgba(102, 102, 204, 0.1);
    top: 10%;
    right: 40%;
    border-radius: 15px;
    animation: rotateFloat 28s infinite linear reverse;
}

@keyframes floatAnim {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(120px, 80px) scale(1.15) rotate(15deg);
    }
}

@keyframes rotateFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(50px, 50px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes slideLine {
    0% {
        transform: rotate(35deg) translateX(-100%);
    }

    100% {
        transform: rotate(35deg) translateX(200%);
    }
}

@keyframes slideLineRev {
    0% {
        transform: rotate(-25deg) translateX(100%);
    }

    100% {
        transform: rotate(-25deg) translateX(-200%);
    }
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(to right, #1e293b, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--panel-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hint {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.toggle-box,
.status-chip {
    background: var(--panel-muted);
    border: 1px solid var(--border-color);
    border-radius: var(--panel-radius);
    padding: 16px;
}

.status-managed {
    background: var(--success-soft);
    color: var(--success-text);
    border-color: rgba(46, 107, 67, 0.12);
}

.status-legacy {
    background: var(--warning-soft);
    color: var(--warning-text);
    border-color: rgba(138, 103, 48, 0.12);
}

.status-approved {
    background: #edf8f0;
    color: #166534;
    border-color: rgba(22, 101, 52, 0.12);
}

.status-pending {
    background: #fff5df;
    color: #8a6730;
    border-color: rgba(138, 103, 48, 0.12);
}

.status-rejected {
    background: #fff1f2;
    color: #b91c1c;
    border-color: rgba(185, 28, 28, 0.12);
}

.form-group.full-width {
    grid-column: span 2;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding-left: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="file"],
input[type="color"],
select,
textarea {
    min-height: 54px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--field-radius);
    padding: 12px 15px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

select option {
    background-color: #ffffff;
    color: var(--text-primary);
}

textarea {
    resize: vertical;
    min-height: 94px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-color);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.password-field {
    position: relative;
}

.password-field input[type="password"],
.password-field input[type="text"] {
    width: 100%;
    padding-right: 54px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    color: var(--accent-strong);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.08);
}

.password-toggle:hover {
    border-color: rgba(37, 99, 235, 0.18);
    background: linear-gradient(180deg, #f8fbff 0%, #dbeafe 100%);
}

input[type="file"] {
    padding: 8px;
    min-height: 54px;
    color: var(--text-secondary);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

input[type="file"]:hover {
    border-color: var(--border-strong);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

input[type="file"]::file-selector-button {
    margin-right: 14px;
    padding: 11px 16px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 10px;
    background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
    color: var(--accent-strong);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.08);
}

input[type="file"]::file-selector-button:hover {
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    border-color: rgba(37, 99, 235, 0.26);
    transform: translateY(-1px);
}

input[type="color"] {
    min-height: 54px;
    padding: 6px !important;
    cursor: pointer;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 9px;
}

.section-title {
    grid-column: span 2;
    margin: 20px 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--accent-color);
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.type-card {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--panel-radius);
    padding: 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.type-card strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.type-card span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.type-card input {
    display: none;
}

.type-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-hover-shadow);
}

.type-card.selected {
    border-color: var(--accent-color);
    box-shadow: var(--card-hover-shadow);
    background: #f8fbff;
}

.social-toggle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    grid-column: span 2;
}

.social-item {
    background: var(--panel-bg);
    padding: 15px;
    border-radius: var(--panel-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.hidden-input {
    display: none;
    margin-top: 10px;
    animation: fadeIn 0.3s ease-in-out;
}

.asset-thumb {
    width: 112px;
    height: 112px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.asset-thumb:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
}

.asset-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.asset-thumb-wide {
    width: 180px;
    height: 88px;
}

.asset-thumb-mobile {
    width: 88px;
    height: 156px;
}

.check-inline {
    margin-top: 2px;
    padding-left: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
}

.check-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.background-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    grid-column: span 2;
    max-height: 250px;
    overflow-y: auto;
    padding: 15px;
    background: #f4f7fb;
    border-radius: var(--panel-radius);
    border: 1px solid var(--border-color);
}

.bg-option {
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 60px;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.bg-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-option.selected {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
}

.bg-option input {
    display: none;
}

.keep-tile {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf0f7;
    color: var(--text-primary);
    font-size: 0.76rem;
    text-align: center;
    padding: 8px;
}

.btn-submit {
    grid-column: span 2;
    margin-top: 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--accent-glow);
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d5dce8;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(17, 24, 39, 0.18);
}

input:checked + .slider {
    background-color: var(--accent-color);
}

input:checked + .slider:before {
    transform: translateX(21px);
}

@media (max-width: 900px) {
    .type-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .admin-topbar {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

    body.with-topbar {
        padding-top: 132px;
    }

    .admin-topbar-center,
    .admin-topbar-right {
        justify-content: stretch;
    }

    .admin-topbar-right {
        gap: 10px;
    }

    .admin-topbar-link {
        justify-content: center;
    }

    .admin-dropdown-menu {
        left: 0;
        right: 0;
        min-width: 100%;
    }

    .admin-topbar-dev {
        align-items: center;
        width: 100%;
    }

    .admin-main {
        padding: 18px 16px 26px;
    }

    .page-toolbar,
    .app-heading,
    .confirm-actions,
    .toast-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-back-link,
    .dialog-btn {
        width: 100%;
        justify-content: center;
    }

    .app-heading {
        text-align: center;
    }

    .app-heading-icon {
        margin: 0 auto;
    }

    .confirm-dialog {
        padding: 24px 20px 20px;
        border-radius: 22px;
    }

    .toast-dialog {
        padding: 24px 20px 20px;
        border-radius: 22px;
    }

    .form-grid,
    .social-toggle-grid,
    .type-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width,
    .section-title,
    .btn-submit {
        grid-column: span 1;
    }

    .glass-panel {
        padding: 24px;
    }

    body .container::before {
        width: 110px;
        height: 110px;
        right: 4%;
        top: 20%;
    }

    body .container::after {
        left: 2%;
        border-left-width: 45px;
        border-right-width: 45px;
        border-bottom-width: 78px;
    }

    .container .shape-line-a,
    .container .shape-line-b,
    .container .shape-dot-grid {
        display: none;
    }
}
