/* ==========================================
   Custom Neumorphism Overrides for Game Server
   ========================================== */

/* Global Font */
body {
    font-family: 'Nunito Sans', sans-serif;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-family: 'NarCon', 'Nunito Sans', sans-serif;
    font-size: 2.8rem;
    color: #c0392b;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.hero-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
    text-decoration: none;
    color: #fff !important;
}

.hero-btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: #c0392b !important;
    border: 2px solid #c0392b;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: #c0392b;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-2px);
}

.hero-image-col {
    position: relative;
}

.hero-image {
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 40px 0 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-links {
        justify-content: center;
    }

    .hero-image {
        max-height: 320px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-image {
        max-height: 240px;
    }
}

/* ==========================================
   Player Class Cards (Top Players)
   ========================================== */
.player-icon-neu {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 6px 6px 11px #d9d9d9, -6px -6px 11px #ffffff;
    transition: opacity 0.3s ease;
}

.player-icon-wrap {
    display: inline-block;
    position: relative;
    width: 150px;
    height: 150px;
}
.player-icon-wrap .default {
    display: inline-block;
}
.player-icon-wrap .hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.player-icon-wrap:hover .default {
    opacity: 0;
}
.player-icon-wrap:hover .hover {
    opacity: 1;
}

.ranking-class-icon-wrap {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
}
.ranking-class-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.ranking-class-icon-wrap .default {
    display: inline-block;
}
.ranking-class-icon-wrap .hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.ranking-class-icon-wrap:hover .default {
    opacity: 0;
}
.ranking-class-icon-wrap:hover .hover {
    opacity: 1;
}

/* ==========================================
   Tables (Neumorphism style)
   ========================================== */

/* ==========================================
   Class Showcase (Top Players)
   ========================================== */
@font-face {
    font-family: 'NarCon';
    src: url('/images/iconsRank/NarCon-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.classes-showcase {
    position: relative;
    padding: 0 60px;
}

.classes-card {
    display: none;
}

.classes-card.active {
    display: block;
    animation: classFadeIn 0.4s ease;
}

@keyframes classFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.classes-card .card {
    position: relative;
    overflow: visible !important;
}

.classes-image-col {
    min-height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 0.55rem 0 0 0;
}

.classes-char-img {
    max-height: 320px;
    position: relative;
    z-index: 15;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
    pointer-events: none;
}

.classes-card:hover .classes-char-img {
    transform: scale(1.05);
}

/* Desktop: image overflows card */
@media (min-width: 992px) {
    .classes-showcase {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .classes-image-col {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 42%;
        min-height: auto;
        overflow: visible;
        background-size: cover;
        background-position: center;
        border-radius: 0;
        z-index: 15;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .classes-char-img {
        max-height: 480px;
        position: relative;
    }
    .classes-card .card > .row {
        min-height: 320px;
    }
    .classes-card .card > .row > .col-md-7 {
        margin-left: 42%;
        padding-bottom: 60px !important;
    }
}

@media (min-width: 1200px) {
    .classes-showcase {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .classes-image-col {
        width: 45%;
    }
    .classes-char-img {
        max-height: 560px;
    }
    .classes-card .card > .row > .col-md-7 {
        margin-left: 45%;
        width: 55%;
    }
}

.classes-name {
    font-family: 'NarCon', 'Nunito Sans', sans-serif;
    font-size: 2rem;
    color: #31344b;
    letter-spacing: 1px;
}

/* Class Stats Image */
.classes-stats-img {
    flex-shrink: 0;
    width: 100px;
}

.classes-stats-img img {
    width: 100%;
    height: auto;
}

/* Best Player Bar */
.classes-best-bar {
    background-color: rgb(200, 70, 68);
    color: #fff;
    text-align: center;
    padding: 4px 20px;
    margin: 1px;
}

.classes-best-bar span {
    display: block;
}

.classes-best-bar .classes-best-title {
    font-size: 0.75rem;
    line-height: 1rem;
}

.classes-best-bar .classes-best-player {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
}

.classes-best-bar .classes-best-player a {
    color: #fff !important;
    text-decoration: none;
}

@media (min-width: 992px) {
    .classes-best-bar {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 75%;
        margin: 0;
        padding: 10px 20px 10px 8rem;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        z-index: 6;
    }
    .classes-best-bar span {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .classes-best-bar .classes-best-player {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}

/* Navigation Arrows */
.classes-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e6e7ee;
    border: 1px solid rgba(209, 214, 230, 0.3);
    box-shadow: 6px 6px 11px #d9d9d9, -6px -6px 11px #ffffff;
    color: #c0392b;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.classes-arrow:hover {
    box-shadow: inset 2px 2px 5px #d9d9d9, inset -2px -2px 5px #ffffff;
    color: #e74c3c;
}

.classes-arrow-left {
    left: 0;
}

.classes-arrow-right {
    right: 0;
}

@media (max-width: 767px) {
    .classes-showcase {
        padding: 0 45px;
    }

    .classes-image-col {
        min-height: 220px;
    }

    .classes-char-img {
        max-height: 200px;
    }

    .classes-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .classes-name {
        font-size: 1.5rem;
    }

    .classes-diamond {
        display: none;
    }
}

/* ==========================================
   Tables (Neumorphism style) - continued
   ========================================== */
.table-flush {
    width: 100%;
    border-collapse: collapse;
}

.table-flush th,
.table-flush td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.table-flush thead th {
    background-color: transparent;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    color: #31344b;
}

.table-flush tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Ranking header and empire row colors */
.ranking-thead {
    background: linear-gradient(135deg, #b33939, #cd6133);
    color: #fff;
}
.ranking-thead th {
    color: #fff !important;
    border-bottom: none !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1rem;
}
.ranking-row.empire-1 {
    background-color: rgba(255, 217, 61, 0.25);
}
.ranking-row.empire-2 {
    background-color: rgba(162, 196, 224, 0.25);
}
.ranking-row.empire-3 {
    background-color: rgba(255, 179, 102, 0.25);
}
.ranking-row.empire-1:hover {
    background-color: rgba(255, 217, 61, 0.4);
}
.ranking-row.empire-2:hover {
    background-color: rgba(162, 196, 224, 0.4);
}
.ranking-row.empire-3:hover {
    background-color: rgba(255, 179, 102, 0.4);
}

/* Ranking responsive hiding */
@media only screen and (max-width: 767px) {
    .ranking-exp, .ranking-guild-points {
        display: none;
    }
}

@media only screen and (max-width: 530px) {
    .ranking-guild, .ranking-guild-loss, .ranking-guild-draw {
        display: none;
    }
}

@media only screen and (max-width: 450px) {
    .ranking-class, .ranking-empire {
        display: none;
    }
}

/* ==========================================
   Ranking class images
   ========================================== */
.ranking-class img {
    max-width: 32px;
}

/* ==========================================
   Profile Abilities (ability sprites)
   ========================================== */
.ability-warrior-0 {
    margin: auto;
    background-image: url('/images/profile/ability.png');
    width: 32px; height: 32px;
    background-position: 64px 0px;
}
.ability-warrior-1 {
    margin: auto;
    background-image: url('/images/profile/ability.png');
    width: 32px; height: 32px;
    background-position: 32px 0px;
}
.ability-assassin-0 {
    margin: auto;
    background-image: url('/images/profile/ability.png');
    width: 32px; height: 32px;
    background-position: 96px 0px;
}
.ability-assassin-1 {
    margin: auto;
    background-image: url('/images/profile/ability.png');
    width: 32px; height: 32px;
    background-position: 128px 0px;
}
.ability-shura-0 {
    margin: auto;
    background-image: url('/images/profile/ability.png');
    width: 32px; height: 32px;
    background-position: 160px 0px;
}
.ability-shura-1 {
    margin: auto;
    background-image: url('/images/profile/ability.png');
    width: 32px; height: 32px;
    background-position: 192px 0px;
}
.ability-shaman-0 {
    margin: auto;
    background-image: url('/images/profile/ability.png');
    width: 32px; height: 32px;
    background-position: 256px 0px;
}
.ability-shaman-1 {
    margin: auto;
    background-image: url('/images/profile/ability.png');
    width: 32px; height: 32px;
    background-position: 224px 0px;
}
.ability-lycan-0 {
    margin: auto;
    background-image: url('/images/profile/ability.png');
    width: 32px; height: 32px;
    background-position: 0px 0px;
}

/* ==========================================
   Player Profile
   ========================================== */
.player-profile {
    background-image: url('/images/profile/background.webp');
    background-repeat: no-repeat;
}

.player-profile > table > tbody > tr > td {
    padding: 10px 80px;
}

/* ==========================================
   Alignment Classes
   ========================================== */
.align-chivalric { color: #3399FF; font-size: 15px; text-shadow: 1px 1px 0px rgba(0,0,0,0.1); }
.align-noble { color: #0066CC; font-size: 15px; text-shadow: 1px 1px 0px rgba(0,0,0,0.1); }
.align-good { color: #003366; font-size: 15px; text-shadow: 1px 1px 0px rgba(0,0,0,0.1); }
.align-friendly { color: #336699; font-size: 15px; text-shadow: 1px 1px 0px rgba(0,0,0,0.1); }
.align-neutral { color: #666; font-size: 15px; text-shadow: 1px 1px 0px rgba(0,0,0,0.1); }
.align-aggressive { color: #660000; font-size: 15px; text-shadow: 1px 1px 0px rgba(0,0,0,0.1); }
.align-fraudulent { color: #990000; font-size: 15px; text-shadow: 1px 1px 0px rgba(0,0,0,0.1); }
.align-malicious { color: #CC0000; font-size: 15px; text-shadow: 1px 1px 0px rgba(0,0,0,0.1); }
.align-cruel { color: #FF0000; font-size: 15px; text-shadow: 1px 1px 0px rgba(0,0,0,0.1); }

/* ==========================================
   Word Cloud
   ========================================== */
.word-cloud {
    padding: 15px;
    margin: 15px;
}

ul.cloud {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    line-height: 2.75rem;
    width: 450px;
}

ul.cloud a {
    --size: 4;
    --color: #31344b;
    color: var(--color);
    font-size: calc(var(--size) * 0.25rem + 0.5rem);
    display: block;
    padding: 0.125rem 0.25rem;
    position: relative;
    text-decoration: none;
}

ul.cloud a[data-weight="1"] { --size: 1; }
ul.cloud a[data-weight="2"] { --size: 2; }
ul.cloud a[data-weight="3"] { --size: 3; }
ul.cloud a[data-weight="4"] { --size: 4; }
ul.cloud a[data-weight="5"] { --size: 6; }
ul.cloud a[data-weight="6"] { --size: 8; }
ul.cloud a[data-weight="7"] { --size: 10; }
ul.cloud a[data-weight="8"] { --size: 13; }
ul.cloud a[data-weight="9"] { --size: 16; }

ul[data-show-value] a::after {
    content: " (" attr(data-weight) ")";
    font-size: 1rem;
}

ul.cloud a:focus {
    outline: 1px dashed;
}

ul.cloud a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: var(--color);
    transform: translate(-50%, 0);
    opacity: 0.15;
    transition: width 0.25s;
}

/* ==========================================
   Misc Overrides for Neumorphism 
   ========================================== */

/* ==========================================
   Download Bar (Dark)
   ========================================== */
.download-bar {
    padding: 30px 0;
}

.download-bar-title {
    font-family: 'NarCon', 'Nunito Sans', sans-serif;
    color: #c0392b;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.download-bar-text {
    display: block;
    color: #666;
    font-size: 0.85rem;
}

.download-bar-btn {
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(209, 214, 230, 0.5);
    border-radius: 10px;
    padding: 10px 24px;
    color: #31344b !important;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 6px 6px 11px #d9d9d9, -6px -6px 11px #ffffff;
}

.download-bar-btn:hover {
    border-color: #c0392b;
    background: rgba(192, 57, 43, 0.04);
    text-decoration: none;
    color: #c0392b !important;
    transform: translateY(-2px);
}

.download-bar-btn-icon {
    font-size: 1.6rem;
    margin-right: 14px;
    color: #31344b;
}

.download-bar-btn:hover .download-bar-btn-icon {
    color: #c0392b;
}

.download-bar-btn-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.download-bar-btn-info strong {
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.download-bar-btn-info small {
    color: #999;
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .download-bar {
        text-align: center;
    }
    .download-bar .text-right {
        text-align: center !important;
    }
}

/* ==========================================
   News & Community (Tabbed)
   ========================================== */
.news-section-title {
    font-family: 'NarCon', 'Nunito Sans', sans-serif;
    font-size: 1.8rem;
    color: #c0392b;
    letter-spacing: 1px;
    padding: 10px 40px;
    border: 2px solid rgba(192, 57, 43, 0.25);
    border-radius: 10px;
    display: inline-block;
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.news-tab {
    background: transparent;
    border: none;
    padding: 8px 18px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}

.news-tab:hover {
    color: #c0392b;
}

.news-tab.active {
    color: #c0392b;
    border-bottom-color: #c0392b;
    font-weight: 600;
}

/* News List Layout */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.news-item {
    background: rgba(20, 20, 25, 0.85);
    border-left: 3px solid transparent;
    transition: border-color 0.2s ease;
}

.news-item:hover {
    border-left-color: #c0392b;
}

.news-item.active {
    border-left-color: #c0392b;
}

.news-row {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    gap: 16px;
    transition: background 0.2s ease;
}

.news-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.news-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 3px;
    white-space: nowrap;
    min-width: 90px;
    text-align: center;
    flex-shrink: 0;
}

.news-badge-event {
    background: rgba(192, 57, 43, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(192, 57, 43, 0.4);
}

.news-badge-update {
    background: rgba(41, 128, 185, 0.2);
    color: #3498db;
    border: 1px solid rgba(41, 128, 185, 0.4);
}

.news-badge-news {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(39, 174, 96, 0.4);
}

.news-badge-tutorial {
    background: rgba(142, 68, 173, 0.2);
    color: #9b59b6;
    border: 1px solid rgba(142, 68, 173, 0.4);
}

.news-title {
    flex: 1;
    font-size: 0.9rem;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.news-date {
    font-size: 0.8rem;
    color: #c0392b;
    white-space: nowrap;
}

/* News Preview (Expandable) */
.news-preview {
    display: none;
    padding: 0 20px 18px 20px;
    animation: newsSlideDown 0.3s ease;
}

.news-item.active .news-preview {
    display: block;
}

@keyframes newsSlideDown {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 400px; }
}

.news-preview-content {
    display: flex;
    gap: 18px;
    padding: 16px;
    background: rgba(30, 30, 35, 0.7);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-preview-img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.news-preview-text {
    flex: 1;
    min-width: 0;
}

.news-preview-text p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 12px;
}

.news-read-more {
    display: inline-block;
    font-size: 0.8rem;
    color: #c0392b;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid rgba(192, 57, 43, 0.4);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.news-read-more:hover {
    background: rgba(192, 57, 43, 0.15);
    color: #e74c3c;
    text-decoration: none;
}

@media (max-width: 768px) {
    .news-row {
        flex-wrap: wrap;
        padding: 12px 14px;
        gap: 8px;
    }
    .news-badge {
        min-width: auto;
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    .news-title {
        width: 100%;
        order: 3;
        white-space: normal;
    }
    .news-preview-content {
        flex-direction: column;
    }
    .news-preview-img {
        width: 100%;
        height: 150px;
    }
}

/* Tooltip */
.tooltip-inner {
    max-width: 350px;
    text-align: start;
}

/* Section spacing */
.section {
    position: relative;
}

/* Card header */
.card-header {
    border-bottom: none;
    background: transparent;
}

/* ==========================================
   Tiny Slider overrides for neumorphism
   ========================================== */
.tns-outer {
    position: relative;
}

/* ==========================================
   SweetAlert2 Neumorphism Overrides
   ========================================== */
.swal2-popup {
    background: #e6e7ee;
    color: #31344b;
    border-radius: 0.55rem;
    border: 1px solid #D1D9E6;
    box-shadow: 6px 6px 12px #b8b9be, -6px -6px 12px #ffffff;
}

.swal2-title {
    color: #31344b;
}

.swal2-html-container,
.swal2-html-container * {
    color: #44476A;
}

.swal2-input,
.swal2-textarea,
.swal2-popup .form-control {
    background: #e6e7ee;
    color: #31344b;
    border: 1px solid #D1D9E6;
    box-shadow: inset 2px 2px 5px #b8b9be, inset -3px -3px 7px #FFFFFF;
    border-radius: 0.55rem;
}

.swal2-input::placeholder,
.swal2-textarea::placeholder,
.swal2-popup .form-control::placeholder {
    color: #93a5be;
}

.swal2-input:focus,
.swal2-textarea:focus,
.swal2-popup .form-control:focus {
    border-color: #31344b;
    box-shadow: inset 2px 2px 5px #b8b9be, inset -3px -3px 7px #FFFFFF;
    outline: none;
}

.swal2-styled.swal2-confirm {
    background-color: #0648B3;
    border: 1px solid #0648B3;
    box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #ffffff;
    border-radius: 0.55rem;
    color: #ECF0F3;
    font-weight: 600;
}

.swal2-styled.swal2-confirm:hover {
    background-color: #0542a0;
}

.swal2-styled.swal2-cancel {
    background-color: #6c757d;
    border: 1px solid #6c757d;
    box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #ffffff;
    border-radius: 0.55rem;
    color: #ECF0F3;
    font-weight: 600;
}

.swal2-styled.swal2-cancel:hover {
    background-color: #5a6268;
}

.swal2-validation-message {
    background: #e6e7ee;
    color: #A91E2C;
    box-shadow: inset 2px 2px 5px #b8b9be, inset -3px -3px 7px #FFFFFF;
}

.swal2-footer {
    border-top: 1px solid #D1D9E6;
    color: #44476A;
}

.swal2-close {
    color: #44476A;
}

.swal2-close:hover {
    color: #A91E2C;
}

.swal2-icon.swal2-info {
    border-color: #0648B3;
    color: #0648B3;
}

.swal2-icon.swal2-success {
    border-color: #18634B;
    color: #18634B;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    background-color: #18634B;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(24, 99, 75, 0.3);
}

.swal2-icon.swal2-error {
    border-color: #A91E2C;
    color: #A91E2C;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    background-color: #A91E2C;
}

.swal2-icon.swal2-warning {
    border-color: #F0B400;
    color: #F0B400;
}

html,
body {
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.footer {
    margin-top: auto;
}

.footer .card {
    margin-bottom: 0;
}
