/* ==========================================================================
   Article Detail Page Layout
   ========================================================================== */
.news-detail-top {
    padding: 40px 0;
    background: #fcfaf6;
}

.article-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.article-detail-main {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 25px;
    min-width: 0;
}

.article-detail-content-wrap {
    flex: 1;
    min-width: 0;
}

/* ==========================================================================
   Left Sticky Utility Bar
   ========================================================================== */
.article-sticky-left {
    position: sticky;
    top: 100px;
    align-self: start;
    z-index: 10;
}

.sticky-action-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.sticky-action-list li {
    width: 32px;
    height: 32px;
}

.sticky-action-list li.font-size-adjust-wrapper {
    width: 32px;
    height: auto;
}

.font-size-adjust-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 4px 0;
    width: 32px;
    height: 98px;
    box-sizing: border-box;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-font-adjust {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #555555;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    outline: none;
    line-height: 1;
    transition: all 0.2s ease-in-out;
}

.btn-font-adjust:hover {
    border-color: #044973;
    color: #044973;
    background-color: #f7f9fa;
}

.btn-font-reset {
    font-size: 13px;
    font-weight: 600;
    color: #444444;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease-in-out;
}

.btn-font-reset:hover {
    color: #044973;
}


.sticky-action-list .btn-text-size,
.sticky-action-list .social-share {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    color: #555555;
    padding: 0px;
    text-decoration: none;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
}

.sticky-action-list .btn-text-size:hover,
.sticky-action-list .social-share:hover {
    border-color: #044973;
    color: #044973;
    background-color: #f7f9fa;
    box-shadow: 0px 4px 8px rgba(4, 73, 115, 0.15);
    transform: translateY(-2px);
}

.sticky-action-list .btn-text-size i,
.sticky-action-list .btn-text-size span,
.sticky-action-list .social-share i {
    font-size: 16px;
    font-weight: 600;
}

.sticky-action-list .social-share img {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Header and Meta Styles
   ========================================================================== */
.breadcrumb {
    margin-bottom: 15px;
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 14px;
    color: #888;
}

.breadcrumb__list li {
    display: flex;
    align-items: center;
}

.breadcrumb__list li:not(:last-child)::after {
    content: ">";
    margin: 0px 8px;
    color: #cccccc;
    font-size: 12px;
}

.breadcrumb__list a {
    color: #044973;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    color: #111111;
    margin-top: 0px;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    align-items: center;
    color: #888888;
    margin-bottom: 15px;
}

.article-source {
    font-weight: 700;
    color: #000;
}

.article-meta-divider {
    margin: 0px 5px;
    color: #222;
}

.article-sapo {
    font-size: 19px;
    font-weight: 700;
    line-height: 28px;
    color: #222;
    margin-bottom: 15px;
    text-align: justify;
}

/* ==========================================================================
   CKEditor Content Custom Styling (Using px)
   ========================================================================== */
.article-content.ck-content {
    font-size: 19px;
    line-height: 28px;
    text-align: justify;
    transition: font-size 0.2s ease;
}

.article-content.ck-content iframe {
    aspect-ratio: 16/9;
    width: 100%;
}

.article-content.ck-content p {
    font-size: inherit;
    line-height: 28px;
    margin-top: 0px;
    margin-bottom: 15px;
}

.article-content.ck-content h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.article-content.ck-content h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 28px;
    color: #111111;
    margin-top: 15px;
    margin-bottom: 12px;
}

.article-content.ck-content h4 {
    font-size: 17px;
    font-weight: 700;
    line-height: 26px;
    color: #111111;
    margin-top: 20px;
    margin-bottom: 10px;
}

.article-content.ck-content a {
    color: #044973;
}

.article-content.ck-content strong,
.article-content.ck-content b {
    font-weight: 700;
    color: #111111;
}

.article-content.ck-content ul,
.article-content.ck-content ol {
    margin-top: 0px;
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-content.ck-content ul {
    list-style-type: disc;
}

.article-content.ck-content ol {
    list-style-type: decimal;
}

.article-content.ck-content li {
    font-size: inherit;
    line-height: 28px;
    margin-bottom: 8px;
    color: #222222;
}

.article-content.ck-content blockquote {
    margin: 25px 0px;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #044973;
    font-style: italic;
    font-size: 18px;
    line-height: 28px;
    color: #444444;
}

.article-content.ck-content blockquote p {
    margin: 0px;
    font-size: inherit;
    line-height: 28px;
}

.article-content.ck-content blockquote cite {
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    margin-top: 8px;
    color: #666666;
    text-align: right;
}

.article-content.ck-content figure {
    text-align: center;
}

.article-content.ck-content figure img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
}

.article-content.ck-content figcaption {
    font-size: 14px;
    line-height: 20px;
    color: #666666;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
    padding: 0px 10px;
    margin-bottom: 10px;
}

.article-content.ck-content .table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.article-content.ck-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    line-height: 24px;
}

.article-content.ck-content table th,
.article-content.ck-content table td {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    text-align: left;
}

.article-content.ck-content table th {
    background-color: #f7f9fa;
    font-weight: 700;
    color: #111111;
}

.article-content.ck-content table tr:nth-child(even) {
    background-color: #fbfbfc;
}

.article-content.ck-content table tr:hover {
    background-color: #f5f7f8;
}

/* ==========================================================================
   Right Sidebar Sticky
   ========================================================================== */


.sidebar-sticky-wrap {
    position: sticky;
    top: 60px;
    align-self: start;
}

.sidebar-block-title {
    border-bottom: 1px solid #000;
    padding-bottom: 6px;
    margin-bottom: 15px;
}

.sidebar-block-title h2 {
    font-size: 18px;
    text-transform: uppercase;
}

.sidebar-article-list {
    display: flex;
    flex-direction: column;
}

.sidebar-article-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed #ddd;
}

.sidebar-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.sidebar-article-thumb {
    width: 100px;
}

.sidebar-article-thumb .wrap-img {
    padding-bottom: 66.7%;
}

.sidebar-article-info {
    flex: 1;
    min-width: 0;
}

.sidebar-article-title {
    font-size: 15px;
}

.sidebar-article-title a {
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; */
}

/* ==========================================================================
   Responsive Settings
   ========================================================================== */
@media (max-width: 991px) {
    .article-detail-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .article-detail-main {
        flex-direction: column;
        gap: 20px;
    }

    .article-sticky-left {
        width: 100%;
        position: static;
        margin-bottom: 10px;
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 15px;
        display: none;
    }

    .sticky-action-list {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }

    .article-detail-sidebar {
        width: 100%;
        min-width: 100%;
    }

    .sidebar-sticky-wrap {
        position: static;
    }
}

@media (max-width: 767px) {
    .article-title {
        font-size: 24px;
        line-height: 32px;
    }

    .article-sapo {
        font-size: 16px;
        line-height: 24px;
    }

    .article-content.ck-content {
        font-size: 16px;
        line-height: 26px;
    }

    .article-content.ck-content p {
        line-height: 26px;
        margin-bottom: 15px;
    }

    .article-content.ck-content h2 {
        font-size: 20px;
        line-height: 28px;
        margin-top: 25px;
    }

    .article-content.ck-content h3 {
        font-size: 18px;
        line-height: 26px;
        margin-top: 20px;
    }

    .sidebar-article-thumb {
        width: 90px;
        min-width: 90px;
        height: 60px;
    }
}

/* ==========================================================================
   Article Bottom Components (Source, Share, Tags, Comments, Related)
   ========================================================================== */
.article-source-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
    margin-bottom: 25px;
}

.article-source-btn {
    font-size: 14px;
    color: #666666;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: inherit;
}

.article-share-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    padding: 0px 16px;
}

.share-fb {
    background-color: #215FA7;
    color: #FFF !important;
}

.share-zalo {
    background-color: #029DED;
    color: #FFF !important;
}

.share-print {
    background-color: #f0f0f0;
    color: #555555;
    border: 1px solid #dcdcdc;
    width: 44px;
    padding: 0px;
}

.share-print:hover {
    background-color: #e4e4e4;
    color: #222222;
}

.article-tags-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 35px;
}

.tags-icon {
    color: #777777;
    margin-top: 4px;
    flex-shrink: 0;
    transform: rotate(90deg);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.tags-list a {
    font-size: 12px;
    color: #555555;
    background-color: #e8e8e8;
    padding: 6px 12px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.tags-list a:hover {
    background-color: #044973;
    color: #ffffff;
}

.article-comment-box {
    margin-bottom: 40px;
}

.comment-textarea {
    width: 100%;
    height: 70px;
    padding: 10px 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s ease;
    margin-bottom: 12px;
}

.comment-textarea:focus {
    border-color: #044973;
}

.comment-submit-btn {
    background-color: #044973;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s ease;
}

.comment-submit-btn:hover {
    background-color: #003e65;
}

.related-header {
    border-bottom: 1px solid #000;
    padding-bottom: 6px;
    margin-bottom: 15px;
}

.related-header h2 {
    font-size: 24px;
    text-transform: uppercase;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.related-item {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 15px;
    align-items: start;
}

.related-thumb .wrap-img {
    padding-bottom: 66.7%;
}

.related-title {
    font-size: 20px;
    margin-bottom: 7px;
}

.related-desc {
    font-size: 14px;
    color: #333;
    text-align: justify;
}

@media (max-width: 767px) {
    .related-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .related-title {
        font-size: 17px;
        line-height: 24px;
    }
}

/* ==========================================================================
   Highlight and Read Most Section
   ========================================================================== */
.highlight-readmost-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    padding: 30px 0;
}

.highlight-featured {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.highlight-featured-thumb .wrap-img {
    padding-bottom: 66.7%;
}


.highlight-featured-title {
    font-size: 20px;
    margin-bottom: 7px;
}

.highlight-featured-date {
    font-size: 14px;
    color: #999999;
    margin-bottom: 10px;
}

.highlight-featured-desc {
    font-size: 15px;
    line-height: 22px;
    text-align: justify;
    color: #333303;
}

.highlight-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 -15px;
}

.highlight-item-thumb .wrap-img {
    padding-bottom: 66.7%;
    margin-bottom: 10px;
}

.highlight-item-title {
    font-size: 16px;
}

.highlight-item-title a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.highlight-grid-item {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
    border-right: 1px solid #E5E5E5;
}

.highlight-grid-item-inner {
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
}

@media (min-width: 768px) {
    .highlight-grid-item:nth-child(n+4) .highlight-grid-item-inner {
        border-bottom: none;
        padding-bottom: 0;
    }

    .highlight-grid-item:nth-child(n+4) {
        padding-bottom: 0;
    }

    .highlight-grid-item:nth-child(3n+3) {
        border-right: none;
    }
}

@media (max-width: 991px) {
    .highlight-readmost-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .readmost-sidebar {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .highlight-featured {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .highlight-featured-title {
        font-size: 18px;
        line-height: 24px;
    }

    .highlight-sub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-grid-item:nth-child(n+5) {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 479px) {
    .highlight-sub-grid {
        grid-template-columns: 1fr;
    }

    .highlight-grid-item:nth-child(5) {
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 15px;
    }

    .highlight-grid-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Highlight section header style */
.highlight-header {
    border-bottom: 1px solid #000;
    padding-bottom: 6px;
    margin-bottom: 15px;
}

.highlight-header h2 {
    font-size: 24px;
    text-transform: uppercase;
}

/* ==========================================================================
   Latest News Timeline Section
   ========================================================================== */
.latest-section {
    margin-top: 35px;
}

.latest-header {
    border-bottom: 1px solid #000;
    padding-bottom: 6px;
    margin-bottom: 15px;
}

.latest-header h2 {
    font-size: 24px;
    text-transform: uppercase;
}

.latest-timeline-list {
    position: relative;
    padding-left: 30px;
}

.latest-timeline-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.latest-timeline-item .inner {

    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;

}

/* 
.latest-timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
} */

.latest-timeline-list {
    position: relative;
}

/* Timeline vertical line segments connecting dots */
.latest-timeline-list::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    bottom: 0px;
    width: 1px;
    background-color: #e0e0e0;
    z-index: 1;
}

/* Timeline dot */
.latest-timeline-badge {
    position: absolute;
    left: -30px;
    top: 6px;
    width: 9px;
    height: 9px;
    background-color: #044973;
    border-radius: 50%;
    z-index: 2;
}

.latest-item-time {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.latest-item-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.latest-item-excerpt {
    font-size: 15px;
    color: #333303;
    text-align: justify;
}

.latest-item-thumb .wrap-img {
    padding-bottom: 66.7%;
}

@media (max-width: 767px) {
    .latest-timeline-item .inner {
        grid-template-columns: 1fr 140px;
        gap: 15px;
    }

    .latest-item-title {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 575px) {
    .latest-timeline-item .inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .latest-item-thumb {
        width: 100%;
        order: -1;
    }
}

/* Comment Modal Styles */
.comment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.comment-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.comment-modal-content {
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.comment-modal-overlay.show .comment-modal-content {
    transform: translateY(0);
}

.comment-modal-header {
    padding: 16px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.comment-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s;
    padding: 0;
    line-height: 1;
}

.comment-modal-close:hover {
    color: #333;
}

.comment-modal-body {
    padding: 20px;
}

.comment-modal-body .form-group {
    margin-bottom: 16px;
    text-align: left;
}

.comment-modal-body .form-group:last-child {
    margin-bottom: 0;
}

.comment-modal-body label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
    text-align: left;
}

.comment-modal-body .required {
    color: #dc3545;
}

.comment-modal-body .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.comment-modal-body .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.comment-modal-footer {
    padding: 14px 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.comment-modal-footer button {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.comment-modal-footer .btn-cancel {
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
}

.comment-modal-footer .btn-cancel:hover {
    background: #f1f1f1;
}

.comment-modal-footer .btn-submit {
    background: #044973;
    border: 1px solid #044973;
    color: #fff;
}

.comment-modal-footer .btn-submit:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.comment-modal-footer .btn-submit:disabled {
    background: #a0a0a0;
    border-color: #a0a0a0;
    cursor: not-allowed;
}

/* Premium Comments Section Styling */
.comments-display-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 8px;
}

.comments-header {
    margin-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
}

.comments-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    position: relative;
    margin: 0;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-item {
    display: flex;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px dashed #e0e0e0;
    animation: fadeIn 0.4s ease-out;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0056a3, #0088cc);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    flex-shrink: 0;
}

.comment-details {
    flex-grow: 1;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.comment-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: #222;
}

.comment-date {
    font-size: 0.78rem;
    color: #888;
}

.comment-body {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #444;
    word-break: break-word;
}

.comments-pagination {
    text-align: center;
    margin-top: 20px;
}

.load-more-comments-btn {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #dcdcdc;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.load-more-comments-btn:hover {
    background-color: #0056a3;
    color: #fff;
    border-color: #0056a3;
}

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

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