@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0-beta17/dist/css/tabler-flags.min.css");
@import url("https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/dist/tabler-icons.min.css");

body {
    background-color: #17171A;
    font-family: 'Inter', sans-serif;
    color: #FFF;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    flex: 1;
}

/* navigation bar */
.navbar {
    background-color: #000;
    height: 75px;
    padding: 0 315px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #3F444D;
    flex-shrink: 0;
    position: relative;
}

.navbar img {
    width: 32px;
    height: 32px;
}

.logo {
    text-align: left;
    user-select: none;
}

.logo-main {
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(to bottom, #FFF, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 11px;
    font-weight: 200;
    letter-spacing: 1px;
    color: #FFF;
}

.nav-item { 
    font-family: 'Space Grotesk', sans-serif;
}

.nav-items.desktop {
    display: flex;
    gap: 10px;
    user-select: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-items.mobile {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #111;
    border-bottom: 1px solid #3F444D;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    gap: 8px;
}

.nav-items.mobile .nav-item {
    padding: 6px 12px;
    font-size: 14px;
    text-decoration: none;
    color: #BBB;
    background: none;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.nav-items.mobile .nav-item.active {
    color: #FFF;
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav-items.desktop {
        display: none;
    }
}

.nav-item {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #BBB;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.nav-item:hover {
    background-color: #161616;
    color: #DDD;
    cursor: pointer;
}

.nav-item.active {
    background-color: #161616;
    color: #DDD;
}

.user {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 5px;
    gap: 10px;
    position: relative;
    z-index: 10;
    transition: all 0.25s ease-in-out;
    background-color: transparent;
    padding: 5px 0;
    min-width: 180px;
    justify-content: end;
}

.user::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -10px;
    right: -10px;
    bottom: -4px;
    background-color: #161616;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, border-radius 0.2s ease-in-out;
    z-index: -1;
}

.user:hover::before {
    opacity: 1;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.user img {
    width: 36px;
    height: 36px;
    border-radius: 4px;
}

.username {
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(to bottom, #FFF, #BBB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2px;
}

.title {
    font-size: 12px;
    font-weight: 400;
    color: #BBB;
}

.user:hover {
    cursor: pointer;
}

.user.active::before {
    opacity: 1;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-container {
    position: absolute;
    left: -10px;
    right: -10px;
    top: calc(100% + 4px);
    background-color: rgb(22, 22, 22, 1);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: max-height 0.3s ease-out,
        opacity 0.25s ease-in-out,
        transform 0.25s ease-out;
    z-index: -1;
}

.divider {
    border: none;
    border-top: 1px solid rgba(95, 95, 95, 0.5);
    margin: 8px 0;
}

.user.active .dropdown-container {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 12px;
    padding-bottom: 12px;
}

.user.active::after {
    content: "";
    position: absolute;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    left: -5px;
    right: -5px;
    bottom: -8px;
    z-index: 5;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    font-size: 14px;
    color: #BBB;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
    margin: 0 10px 5px 10px;
    border-radius: 4px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item svg {
    width: 18px;
    height: 18px;
    color: #BBB;
    transition: color 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.dropdown-item:hover {
    background: rgba(95, 95, 95, 0.2);
    color: #FFF;
}

.dropdown-item:hover svg {
    color: #FFF;
}

.logout {
    color: #ff5555;
    margin-top: 5px;
}

.dropdown-item.logout:hover {
    color: #ff5555;
}

.logout svg {
    color: #ff5555;
}

.logout:hover {
    background: rgba(255, 85, 85, 0.1);
}

.navigation-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.navigation-button-text {
    color: #FFF;
    font-size: 14px;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.navigation-button-text:hover {
    color: #DDD;
    text-decoration: underline;
    cursor: pointer;
}

.navigation-button-primary {
    color: #000;
    font-size: 14px;
    font-family: 'Space Grotesk', sans-serif;
    padding: 4px 12px;
    background-color: #FFF;
    border: 1px solid #DDD;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.navigation-button-primary:hover {
    background-color: #F0F0F0;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}

.nav-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.burger {
    display: none;
}

.burger i {
    font-size: 24px;
    color: #BBB;
    transition: color 0.2s ease;
}

.burger.active i {
    color: #FFF;
}

/* footer */
.footer {
    background-color: #000;
    height: 125px;
    padding: 0 315px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #3F444D;
    color: #FFF;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-tag {
    font-size: 12px;
    font-weight: 200;
    color: #FFF;
}

.footer-name {
    font-size: 24px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #FFF, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    font-size: 12px;
    font-weight: 300;
    color: #BBB;
    display: flex;
    align-items: center;
}

.footer-description .footer-bold {
    font-weight: bold;
    margin-left: 3px;
    margin-right: 5px;
}

.footer-flag {
    width: 16px;
    height: 12px;
    display: inline-block;
    border-radius: 1px;
}

.footer-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-flag {
    width: 16px;
    height: 12px;
    display: inline-block;
    border-radius: 1px;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    color: #BBB;
    text-decoration: none;
}

.footer-link:hover {
    color: #FFF;
}

/* alerts */
.site-alerts {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.site-alerts:not(:has(.site-alert)) {
    display: none;
}

.site-alert {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: rgba(78, 209, 78, 0.07);
    border: 1px solid #2F4932;
    border-radius: 8px;
    padding: 14px 18px;
    color: #DDD;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
}

.site-alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #7EBE7E;
    flex-shrink: 0;
}

.site-alert[data-type="announcement"] {
    background-color: rgba(78, 209, 78, 0.07);
    border-color: #2F4932;
}
.site-alert[data-type="announcement"] .site-alert-icon {
    color: #7EBE7E;
}
.site-alert[data-type="announcement"] .site-alert-message a {
    color: #7EBE7E;
}
.site-alert[data-type="announcement"] .site-alert-message a:hover {
    color: #9FDB9F;
}

.site-alert[data-type="changelog"] {
    background-color: rgba(90, 152, 198, 0.07);
    border-color: #3A4F5E;
}
.site-alert[data-type="changelog"] .site-alert-icon {
    color: #5A98C6;
}
.site-alert[data-type="changelog"] .site-alert-message a {
    color: #5A98C6;
}
.site-alert[data-type="changelog"] .site-alert-message a:hover {
    color: #79B6E0;
}

.site-alert[data-type="warning"] {
    background-color: rgba(229, 168, 76, 0.07);
    border-color: #59462A;
}
.site-alert[data-type="warning"] .site-alert-icon {
    color: #E5A84C;
}
.site-alert[data-type="warning"] .site-alert-message a {
    color: #E5A84C;
}
.site-alert[data-type="warning"] .site-alert-message a:hover {
    color: #F0C674;
}

.site-alert[data-type="danger"] {
    background-color: rgba(255, 107, 107, 0.07);
    border-color: #5A2B2B;
}
.site-alert[data-type="danger"] .site-alert-icon {
    color: #FF6B6B;
}
.site-alert[data-type="danger"] .site-alert-message a {
    color: #FF6B6B;
}
.site-alert[data-type="danger"] .site-alert-message a:hover {
    color: #FF8C8C;
}

.site-alert[data-type="note"] {
    background-color: rgba(160, 174, 192, 0.07);
    border-color: #3C4A5A;
}

.site-alert[data-type="note"] .site-alert-icon {
    color: #A0AEC0;
}

.site-alert[data-type="note"] .site-alert-message a {
    color: #A0AEC0;
}

.site-alert[data-type="note"] .site-alert-message a:hover {
    color: #CBD5E0;
}

.site-alert-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-alert-title {
    font-weight: 600;
    font-size: 15px;
    color: #FFF;
}

.site-alert-message {
    font-size: 13px;
    color: #CCC;
    line-height: 1.5;
}

.site-alert-close {
    background: none;
    border: none;
    color: #AAA;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-left: 10px;
}

.site-alert-close:hover {
    color: #FFF;
}

.site-alert-button {
    background-color: rgba(160, 174, 192, 0.1);
    border: 1px solid #3C4A5A;
    color: #A0AEC0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    align-self: center;
}

.site-alert-button:hover {
    background-color: rgba(160, 174, 192, 0.2);
    color: #CBD5E0;
    border-color: #4D5A6B;
}

.site-alert[data-type="note"] .site-alert-button {
    background-color: rgba(160, 174, 192, 0.1);
    border-color: #3C4A5A;
    color: #A0AEC0;
}

.site-alert[data-type="note"] .site-alert-button:hover {
    background-color: rgba(160, 174, 192, 0.2);
    border-color: #4D5A6B;
    color: #CBD5E0;
}

.site-alert[data-type="announcement"] .site-alert-button {
    background-color: rgba(126, 190, 126, 0.1);
    border-color: #2F4932;
    color: #7EBE7E;
}

.site-alert[data-type="announcement"] .site-alert-button:hover {
    background-color: rgba(126, 190, 126, 0.2);
    border-color: #3A5D3F;
    color: #9FDB9F;
}

.site-alert[data-type="changelog"] .site-alert-button {
    background-color: rgba(90, 152, 198, 0.1);
    border-color: #3A4F5E;
    color: #5A98C6;
}

.site-alert[data-type="changelog"] .site-alert-button:hover {
    background-color: rgba(90, 152, 198, 0.2);
    border-color: #4F6C80;
    color: #79B6E0;
}

.site-alert[data-type="warning"] .site-alert-button {
    background-color: rgba(229, 168, 76, 0.1);
    border-color: #59462A;
    color: #E5A84C;
}

.site-alert[data-type="warning"] .site-alert-button:hover {
    background-color: rgba(229, 168, 76, 0.2);
    border-color: #6D5432;
    color: #F0C674;
}

.site-alert[data-type="danger"] .site-alert-button {
    background-color: rgba(255, 107, 107, 0.1);
    border-color: #5A2B2B;
    color: #FF6B6B;
}

.site-alert[data-type="danger"] .site-alert-button:hover {
    background-color: rgba(255, 107, 107, 0.2);
    border-color: #733838;
    color: #FF8C8C;
}

.site-alert-button i {
    font-size: 14px;
    margin-right: 4px;
    display: inline-block;
}

.icon-rotate {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #3F444D;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #5A5E66;
}

::-webkit-scrollbar-track {
    background-color: #1E1E20;
}

html, body {
    height: 100%;
    margin: 0;
}

/* container */
.container-grid {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.container-grid.pie-graph {
    display: grid;
    gap: 10px;
    align-items: stretch;
}

.container-grid.pie-graph.with-geo {
    grid-template-columns: 1fr 2fr 1fr;
}

.container-grid.pie-graph.no-geo {
    grid-template-columns: 3fr 1fr;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    background-color: #1E1E20;
    border: 1px solid #3F444D;
    border-radius: 5px;
    padding: 15px 20px;
    /* min-height: 50px; */
    justify-content: center;
}

.container-column {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
}

.container-grid.masonry {
    display: block;
    column-count: 2;
    column-gap: 10px;
    margin-top: 10px;
}

.container-grid.masonry .container {
    break-inside: avoid;
    vertical-align: top;
}

.container-title {
    font-size: 12px;
    font-weight: 700;
    color: #BBB;
    user-select: none;
}

/* server header */
.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 15px;
    padding: 15px 20px;
    background-color: #1E1E20;
    border: 1px solid #3F444D;
    border-radius: 5px;
}

.server-details {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.server-details img {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    object-fit: cover;
}

.server-name {
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    flex-shrink: 0;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-left: 15px;
}

.status-icon {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-icon.online {
    background-color: #28A745;
}

.status-icon.offline {
    background-color: #EF3636;
}

.server-status span {
    font-size: 13px;
    font-weight: 400;
    color: #8D8D8D;
}

.server-status .separator {
    font-weight: 700;
    color: #C7C7C7;
}

/* action header */
.action-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.action-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1E1E20;
    border: 1px solid #3F444D;
    color: #BBB;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 5px;
    transition: background-color 0.3s, border 0.3s, transform 0.3s;
    position: relative;
    user-select: none;
    gap: 8px;
}

.action-button:hover {
    background-color: #2e2e31;
    border: 1px solid #525864;
    cursor: pointer;
}

.action-button i {
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-header-right {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

/* analytics header */
.server-analytics {
    display: flex;
    gap: 10px;
}

.analytics-item {
    background-color: #1E1E20;
    border: 1px solid #3F444D;
    border-radius: 5px;
    padding: 15px 20px;
    width: 210px;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    user-select: none;
    flex: 1;
}
.analytics-title {
    font-size: 11px;
    font-weight: 700;
    color: #BBB;
}

.analytics-data-trend {
    display: flex;
    align-items: center;
    gap: 10px;
}

.analytics-data {
    font-size: 32px;
    font-weight: 900;
    color: #FFF;
}

.analytics-trend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
}

.analytics-trend .icon {
    width: 16px;
    height: 16px;
}

.analytics-trend.positive {
    color: #53EC2D;
}

.analytics-trend.positive .icon {
    background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="" height="" viewBox="0 0 24 24" fill="none" stroke="%2353EC2D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8"/><path d="M14 7l7 0l0 7"/></svg>') no-repeat center;
}

.analytics-trend.negative {
    color: #EF3636;
}

.analytics-trend.negative .icon {
    background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="" height="" viewBox="0 0 24 24" fill="none" stroke="%23EF3636" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 7l6 6l4 -4l8 8"/><path d="M21 10l0 7l-7 0"/></svg>') no-repeat center;
}

.analytics-trend.neutral {
    color: #BBB;
}

/* overlay card */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(2px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
}

.overlay-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 32px;
    background-color: #1E1E1E;
    border: 1px solid #333;
    border-radius: 8px;
    color: #EEE;
    font-family: 'Space Grotesk', sans-serif;
    max-width: 380px;
    width: 100%;
}

.overlay-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
}

.overlay-card-text {
    font-size: 13px;
    color: #AAA;
    margin-top: 14px;
}

.overlay-card-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.overlay-card-button {
    padding: 8px 16px;
    font-size: 13px;
    background-color: #7EBE7E;
    color: #1B1B1B;
    text-decoration: none;
    /* border-radius: 6px; */
    transition: background-color 0.2s ease;
}

.overlay-card-button:hover {
    background-color: #91D391;
    text-decoration: underline;
}

.overlay-card-button.secondary {
    background-color: #333;
    color: #CCC;
}

.overlay-card-button.secondary:hover {
    background-color: #444;
    color: #FFF;
}

@media (max-width: 768px) {
    .content {
        padding: 0 20px;
    }

    .input-pair-row {
        flex-direction: column;
    }

    .action-header {
        flex-direction: column;
    }

    .action-header-right {
        flex-wrap: wrap;
    }

    .action-header-right .action-button {
        flex: 1;
    }

    .server-analytics {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .analytics-item {
        width: 100%;
        height: auto;
        padding: 15px 20px;
        box-sizing: border-box;
    }

    .container-grid {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        box-sizing: border-box;
    }

    .container {
        width: 100%;
        padding: 16px 14px;
        box-sizing: border-box;
    }

    .container-grid.masonry {
        column-count: 1;
        column-gap: 0;
    }

    .container-title {
        font-size: 14px;
    }

    .server-status {
        display: none;
    }

    .container-grid.pie-graph {
        display: flex;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 30px 20px;
        gap: 20px;
        text-align: center;
    }

    .footer-left {
        align-items: center;
        text-align: center;
    }

    .footer-name {
        font-size: 20px;
    }

    .footer-description {
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;
    }

    .footer-right {
        height: auto;
        width: 100%;
        justify-content: center;
    }

    .footer-nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 15px;
        row-gap: 15px;
        /* gap: 10px; */
        width: 100%;
    }

    .navbar {
        padding: 0 20px !important;
        height: 60px;
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .logo-main {
        font-size: 18px;
        line-height: 1;
    }

    .logo-sub {
        font-size: 10px;
    }

    .burger {
        display: flex;
    }

    .user {
        padding: 0;
    }

    .user::before {
        bottom: -8px;
    }

    .navigation-buttons {
        gap: 0;
    }

    .navigation-button-text {
        padding: 6px 12px;
        background-color: #1B1B1B;
        border: 1px solid #3F444D;
        border-radius: 4px;
        font-size: 14px;
        display: inline-block;
    }

    .navigation-button-primary {
        display: none;
    }

    .site-alert {
        flex-direction: column;
        align-items: center;
    }

    .site-alert-content {
        align-items: center;
    }

    .site-alert-message {
        text-align: center;
    }

    .site-alert-button {
        width: 100%;
    }
}