:root {
    --bg: #070707;
    --bg-soft: #0f0f10;
    --panel: #15100d;
    --panel-light: #1e1712;
    --border: #3a2114;

    --text: #f5f5f4;
    --muted: #a8a29e;

    --orange: #ff6a00;
    --orange-light: #ff9f1a;
    --lava: #ff3d00;
    --green: #22c55e;

    --shadow: rgba(255, 92, 0, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top, rgba(255, 106, 0, 0.18), transparent 35%),
        linear-gradient(135deg, #050505, #0b0705 45%, #000);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

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

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #0b0b0b, #120a06);
    border-right: 1px solid var(--border);
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.brand img {
    width: 100%;
    max-height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(255, 102, 0, .35));
}

.nav {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-item {
    color: var(--muted);
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    transition: 0.18s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text);
    border-color: var(--orange);
    background: linear-gradient(90deg, rgba(255,106,0,.22), rgba(255,61,0,.05));
    box-shadow: 0 0 24px var(--shadow);
}

.sidebar-footer {
    margin-top: auto;
    color: var(--muted);
    font-size: 13px;
}

.main {
    flex: 1;
    padding: 32px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 32px;
}

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

.topbar p {
    margin: 8px 0 0;
    color: var(--muted);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.realm-status {
    color: var(--green);
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.25);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
}

.login-button {
    border: 0;
    color: #160900;
    background: linear-gradient(135deg, var(--orange-light), var(--lava));
    padding: 11px 18px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 22px var(--shadow);
}

.content {
    max-width: 1200px;
}

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

.card {
    background:
        linear-gradient(180deg, rgba(255,106,0,.07), transparent),
        var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.card-label {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.card-value {
    font-size: 38px;
    font-weight: 800;
}

.card-value.orange {
    color: var(--orange-light);
}

.panel {
    margin-top: 22px;
    background: var(--panel-light);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
}

.panel h2 {
    margin-top: 0;
}

.empty {
    color: var(--muted);
}

@media (max-width: 900px) {
    .app-shell {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

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

    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }
}
.nav-section {
    margin: 22px 8px 6px;
    color: #7c6f66;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.status-pill {
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 700;
}

.status-pill.online {
    color: #86efac;
    background: rgba(34,197,94,.10);
    border: 1px solid rgba(34,197,94,.25);
}

.status-pill.offline {
    color: #fca5a5;
    background: rgba(239,68,68,.10);
    border: 1px solid rgba(239,68,68,.25);
}
.panel-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    text-align: left;
    color: #fbbf24;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: var(--text);
}

.data-table tr:hover td {
    background: rgba(255, 106, 0, .06);
}

.data-table strong {
    color: #fff7ed;
}
.auth-body {
    min-height: 100vh;
}

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

.auth-card {
    width: 100%;
    max-width: 430px;
    background:
        linear-gradient(180deg, rgba(255,106,0,.10), transparent),
        #120d0a;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 34px;
    box-shadow:
        0 0 60px rgba(255, 92, 0, .16),
        0 24px 80px rgba(0,0,0,.55);
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.auth-logo img {
    width: 100%;
    max-width: 320px;
    filter: drop-shadow(0 0 28px rgba(255, 102, 0, .35));
}

.auth-card h1 {
    margin: 0;
    text-align: center;
    font-size: 32px;
}

.auth-subtitle {
    text-align: center;
    color: var(--muted);
    margin: 10px 0 26px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-form label {
    color: #fbbf24;
    font-size: 13px;
    font-weight: 700;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    background: #090706;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 13px 14px;
    outline: none;
}

.auth-form input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,106,0,.14);
}

.auth-row {
    display: flex;
    justify-content: space-between;
    margin: 4px 0 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted) !important;
    font-weight: 400 !important;
}

.auth-button {
    border: 0;
    border-radius: 14px;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 900;
    color: #160900;
    background: linear-gradient(135deg, var(--orange-light), var(--lava));
    box-shadow: 0 0 26px var(--shadow);
}

.auth-error {
    background: rgba(239, 68, 68, .12);
    border: 1px solid rgba(239, 68, 68, .35);
    color: #fecaca;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
}
.user-pill {
    color: var(--text);
    background: rgba(255, 106, 0, .10);
    border: 1px solid rgba(255, 106, 0, .28);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.user-pill small {
    color: var(--orange-light);
    margin-left: 6px;
}

.link-button {
    display: inline-block;
    text-decoration: none;
}
.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.detail-item {
    background: rgba(0,0,0,.20);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 16px;
}

.detail-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.detail-item strong {
    color: var(--text);
    font-size: 16px;
}

.text-success {
    color: #86efac !important;
}

.text-danger {
    color: #fca5a5 !important;
}

@media (max-width: 700px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}
.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
}

.character-card {
    background:
        linear-gradient(180deg, rgba(255,106,0,.08), transparent),
        var(--panel);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

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

.character-top h2 {
    margin: 0;
    font-size: 26px;
}

.character-top p {
    margin: 6px 0 0;
    color: var(--muted);
}

.character-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.character-meta div {
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 14px;
}

.character-meta span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 6px;
}

.character-meta strong {
    color: var(--text);
}

.character-actions {
    margin-top: 18px;
}

.secondary-button {
    width: 100%;
    border: 1px solid rgba(255,106,0,.35);
    background: rgba(255,106,0,.08);
    color: var(--orange-light);
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 800;
}
.character-detail-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.character-detail-header h2 {
    margin: 0;
    font-size: 32px;
}
.small-button {
    width: auto;
    padding: 10px 14px;
}

.mini-character-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.mini-character {
    display: block;
    text-decoration: none;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 15px;
    transition: .18s ease;
}

.mini-character:hover {
    border-color: rgba(255,106,0,.42);
    background: rgba(255,106,0,.08);
}

.mini-character strong {
    display: block;
    color: var(--text);
    font-size: 17px;
}

.mini-character span {
    display: block;
    color: var(--muted);
    margin-top: 5px;
}

.mini-character em {
    display: block;
    color: var(--orange-light);
    font-style: normal;
    margin-top: 8px;
    font-size: 13px;
}
.panel-form {
    display: grid;
    gap: 18px;
}

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

.form-group label {
    color: #fbbf24;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #090706;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
    font: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,106,0,.14);
}

.form-error {
    color: #fca5a5;
    margin: 0;
    font-size: 13px;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}
.search-form {
    display: flex;
    gap: 12px;
}

.search-form input {
    flex: 1;
    background: #090706;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
    font: inherit;
}

.search-form input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,106,0,.14);
}

@media (max-width: 700px) {
    .search-form {
        flex-direction: column;
    }
}
.table-link {
    color: var(--orange-light);
    text-decoration: none;
    font-weight: 900;
}

.table-link:hover {
    text-decoration: underline;
}
.table-link {
    color: var(--orange-light);
    text-decoration: none;
    font-weight: 900;
}

.table-link:hover {
    text-decoration: underline;
}

.danger-button {
    border: 0;
    border-radius: 14px;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #7f1d1d);
    box-shadow: 0 0 26px rgba(239, 68, 68, .25);
}

.success-panel {
    color: #86efac;
    border-color: rgba(34,197,94,.35);
    background: rgba(34,197,94,.08);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.shop-product-card {
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 18px;
}

.shop-product-card h3 {
    margin: 0 0 8px;
    color: var(--orange-light);
}

.shop-product-card p {
    color: var(--muted);
    line-height: 1.5;
}

.shop-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.shop-product-meta span {
    background: rgba(255,106,0,.08);
    border: 1px solid rgba(255,106,0,.18);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--muted);
    font-size: 12px;
}

.shop-product-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.shop-product-footer strong {
    color: var(--text);
}

.form-group select {
    width: 100%;
    background: #090706;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
    font: inherit;
}

.welizia-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.35);
    background: rgba(255, 140, 0, 0.08);
}

.welizia-alert-success {
    border-color: rgba(80, 220, 120, 0.35);
    background: rgba(80, 220, 120, 0.08);
}

.welizia-alert-danger {
    border-color: rgba(255, 80, 80, 0.45);
    background: rgba(255, 80, 80, 0.08);
}

.welizia-alert pre {
    white-space: pre-wrap;
    margin: 0;
}

.welizia-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.welizia-button-small {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 140, 0, 0.45);
    background: rgba(255, 140, 0, 0.16);
    color: inherit;
    cursor: pointer;
}

.welizia-button-secondary {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.35);
    background: rgba(255, 140, 0, 0.10);
    color: inherit;
    cursor: pointer;
}

.welizia-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.welizia-detail-grid div {
    padding: 14px;
    border: 1px solid rgba(255, 140, 0, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
}

.welizia-detail-grid strong {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 170, 80, 0.95);
}

.welizia-detail-grid span {
    display: block;
}

.welizia-shop-product-detail {
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid rgba(255, 140, 0, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
}

.welizia-link {
    color: #ff9f2f;
    text-decoration: none;
}

.welizia-link:hover {
    text-decoration: underline;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.wallet-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(255, 140, 0, 0.18), rgba(20, 10, 5, 0.92));
}

.wallet-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.wallet-card strong {
    display: block;
    font-size: 28px;
    color: #ffb347;
}

.wallet-card span {
    color: rgba(255, 255, 255, 0.75);
}

.currency-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.currency-inline img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.shop-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.shop-price img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* UI Finish Shop + Wallet */
.shop-top-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.shop-product-main {
    min-height: 92px;
}

.shop-product-footer {
    align-items: center;
    gap: 14px;
}

.shop-price {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    line-height: 1.2;
    color: #ffb347;
}

.shop-price img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.welizia-buy-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 130px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.65);
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.24), rgba(90, 35, 5, 0.72));
    color: #ffd18a;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(255, 120, 0, 0.12);
}

.welizia-buy-button:hover {
    border-color: rgba(255, 180, 70, 0.9);
    color: #ffffff;
    text-decoration: none;
}

.shop-purchase-layout {
    max-width: 840px;
}

.purchase-product-box {
    margin-bottom: 22px;
    padding: 18px;
    border: 1px solid rgba(255, 140, 0, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
}

.purchase-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.purchase-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    background: rgba(255, 140, 0, 0.1);
    color: #d6c0a0;
    font-size: 13px;
}

.purchase-price {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 140, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.purchase-price img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.purchase-price strong {
    color: #ffb347;
    font-size: 20px;
}

.purchase-form select {
    width: 100%;
    max-width: 420px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.35);
    background: rgba(10, 8, 6, 0.95);
    color: #ffffff;
}

.purchase-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255, 140, 0, 0.25);
    background: rgba(255, 140, 0, 0.08);
    color: #ffd18a;
}

.status-pending {
    border-color: rgba(255, 180, 70, 0.45);
    background: rgba(255, 180, 70, 0.1);
}

.status-delivered {
    border-color: rgba(80, 220, 120, 0.45);
    background: rgba(80, 220, 120, 0.1);
    color: #9dffb7;
}

.status-failed,
.status-cancelled {
    border-color: rgba(255, 90, 90, 0.45);
    background: rgba(255, 90, 90, 0.1);
    color: #ffaaaa;
}

.welizia-table-spaced {
    border-collapse: separate;
    border-spacing: 0 8px;
}

.welizia-table-spaced tbody tr {
    background: rgba(255, 255, 255, 0.025);
}

.welizia-table-spaced td,
.welizia-table-spaced th {
    padding: 12px 14px;
}

.currency-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.currency-inline img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.amount-positive {
    color: #9dffb7;
    font-weight: 700;
}

.amount-negative {
    color: #ffb347;
    font-weight: 700;
}

/* Character table polish */
.character-list-card {
    max-width: 1050px;
}

.character-table-clean {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.character-table-clean thead th {
    padding: 0 16px 10px 16px;
    color: rgba(255, 180, 80, 0.95);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.character-table-clean tbody tr {
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.055), rgba(255, 255, 255, 0.018));
    border-radius: 14px;
    transition: background 0.15s ease, transform 0.15s ease;
}

.character-table-clean tbody tr:hover {
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.11), rgba(255, 255, 255, 0.03));
}

.character-table-clean tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    border-top: 1px solid rgba(255, 140, 0, 0.12);
    border-bottom: 1px solid rgba(255, 140, 0, 0.12);
}

.character-table-clean tbody td:first-child {
    border-left: 1px solid rgba(255, 140, 0, 0.12);
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}

.character-table-clean tbody td:last-child {
    border-right: 1px solid rgba(255, 140, 0, 0.12);
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

.character-name-clean {
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
}

.character-level-clean {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.14);
    border: 1px solid rgba(255, 140, 0, 0.35);
    color: #ffb347;
    font-weight: 800;
}

.character-icon-cell {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 600;
}

.character-icon-cell img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 9px;
    border: 1px solid rgba(255, 140, 0, 0.28);
    box-shadow: 0 0 12px rgba(255, 120, 0, 0.14);
}

.character-playtime {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    white-space: nowrap;
}

/* Final character table tuning */
.character-list-card {
    max-width: 1120px;
}

.character-table-clean {
    max-width: 100%;
}

.character-table-clean thead th {
    padding: 0 16px 8px 16px;
}

.character-table-clean tbody td {
    padding: 12px 16px;
}

.character-icon-cell img {
    width: 30px;
    height: 30px;
}

.character-name-clean {
    font-size: 16px;
}

.character-level-clean {
    min-width: 34px;
    padding: 5px 9px;
}

.character-playtime {
    color: #ffcf8a;
}


/* Character table alignment fix */
.character-table-clean {
    table-layout: fixed;
}

.character-table-clean th,
.character-table-clean td {
    vertical-align: middle;
}

.character-table-clean th:nth-child(1),
.character-table-clean td:nth-child(1) {
    width: 18%;
}

.character-table-clean th:nth-child(2),
.character-table-clean td:nth-child(2) {
    width: 10%;
    text-align: center;
}

.character-table-clean th:nth-child(3),
.character-table-clean td:nth-child(3),
.character-table-clean th:nth-child(4),
.character-table-clean td:nth-child(4),
.character-table-clean th:nth-child(5),
.character-table-clean td:nth-child(5) {
    width: 19%;
}

.character-table-clean th:nth-child(6),
.character-table-clean td:nth-child(6) {
    width: 15%;
    text-align: center;
}

.character-icon-cell {
    min-width: 130px;
}


/* Character table left alignment */

.character-table-clean th,
.character-table-clean td {
    text-align: left !important;
    vertical-align: middle;
}

.character-table-clean thead th {
    padding-left: 18px;
}

.character-table-clean tbody td {
    padding-left: 18px;
}

.character-level-clean {
    justify-content: center;
    margin-left: 0;
}

.character-icon-cell {
    justify-content: flex-start;
}

