p {
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

.parent-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    margin-top: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(11, 102, 158, 0.08),
                0 0 0 1px rgba(11, 102, 158, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.major-info-container {
    display: flex;
    margin-top: 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .video-container {
        width: 100%;
        min-height: 350px;
        margin-top: 1.5rem;
    }

    .video-container iframe {
        min-height: 350px;
    }

    .job-opportunities-container {
        flex-direction: column;
    }

    .jobs-opportunities {
        width: 100%;
    }
}

.major-img {
    width: 6rem;
    height: 6rem;
}

.major-info-sub-container {
    margin-right: 2rem;
    width: fit-content;
    flex: 1;
}

.major-details {
    display: flex;
    flex-wrap: wrap;
}

.major-name {
    font-size: 1.5rem;
    color: #0d689d;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(13, 104, 157, 0.1);
}

.major-info {
    display: flex;
    margin-right: 2rem;
    gap: 0.8125rem;
}

.major-info p {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    color: #3a3838;
    font-weight: 600;
    background: linear-gradient(135deg, #edf5fb, #f5f9fc);
    border-radius: 1rem;
    margin: auto;
    border: 1px solid rgba(11, 102, 158, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(13, 104, 157, 0.08);
}

.major-info p:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 104, 157, 0.15);
    border-color: rgba(11, 102, 158, 0.2);
}

.overview {
    font-size: 1rem;
    color: #6f6f6f;
    font-weight: 500;
    margin-top: 1.5rem;
    width: 80%;
    text-align: justify;
    line-height: 1.8;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(237, 245, 251, 0.3), rgba(245, 249, 252, 0.3));
    border-radius: 0.75rem;
    border-right: 3px solid #35B8E0;
}

.icon-container {
    position: relative;
    width: 8rem;
    height: 8rem;
    transition: transform 0.3s ease;
}

.icon-container:hover {
    transform: scale(1.05);
}

.icon-container:hover .card-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.card-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card-icon {
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    z-index: 99;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.card-title {
    font-size: 1rem;
    color: #0d689d;
    font-weight: bold;
    margin-top: 1rem;
}

.job-opportunities-header {
    display: flex;
    gap: 0.6875rem;
}
.job-opportunities-title {
    font-size: 1.375rem;
    color: #0d689d;
    font-weight: bold;
    position: relative;
    padding-bottom: 0.5rem;
}

.job-opportunities-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0d689d, #35B8E0);
    border-radius: 2px;
}

.job-opportunities-text {
    font-size: 1.125rem;
    color: #3a3838;
    font-weight: 500;
    margin-top: 1rem;
}

.job-opportunities {
    width: 100%;
    margin-top: 0.5625rem;
    padding: 0;
}

.job-opportunities ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    padding: 0 0.5rem;
}

.job-opportunities li {
    color: #3a3838;
    font-size: 0.8125rem;
    font-weight: 500;
    margin: 0;
    padding: 0;
    text-indent: -0.3rem;
}

.job-opportunities li::marker {
    color: #49bfe3;
    margin: 0;
    padding: 0;
}

.major-buttons {
    display: flex;
    width: 100%;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.register-button {
    display: flex;
    background: linear-gradient(135deg, #0f62ac, #0B669E);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    height: fit-content;
    border: 1px solid #0f62ac;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(15, 98, 172, 0.2);
    position: relative;
    overflow: hidden;
}

.register-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.register-button:hover::before {
    width: 300px;
    height: 300px;
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 98, 172, 0.35);
}

.register-button:active {
    transform: translateY(0);
}

.register-button img {
    width: fit-content;
    height: fit-content;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.register-button p {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0;
    margin-right: 0.5625rem;
    position: relative;
    z-index: 1;
}

.job-opportunities-container {
    display: flex;
    margin-top: 3.1875rem;
    justify-content: space-between;
    flex: 1;
    gap: 2rem;
}

.jobs-opportunities {
    text-align: justify;
    flex: 1;
}

.jobs-opportunities ul {
    margin: auto;
    text-align: justify;
    padding-right: 1.5rem;
}

.video-container {
    width: 40%;
    min-height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(13, 104, 157, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(11, 102, 158, 0.1);
}

@media (min-width: 1400px) {
    .video-container {
        width: 35%;
        min-height: 450px;
    }

    .video-container iframe {
        min-height: 450px;
    }
}

.video-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13, 104, 157, 0.22);
    border-color: rgba(11, 102, 158, 0.2);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

/* .next-video-overlay {
            width: 100%;
            height: 30%;
            background-color: #0000005e;
            position: absolute;
            bottom: 0;
            left: 0;
            color: #fff;
            font-weight: 500;
        } */

.jobs-opportunities li {
    font-size: 1rem;
    color: #6f6f6f;
    font-weight: 500;
}

.contact-us-container {
    margin-top: 3rem;
}

.contact-us-header {
    display: flex;
    gap: 0.6875rem;
}

.contact-us-title {
    font-size: 1.375rem;
    color: #0d689d;
    font-weight: bold;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-us-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0d689d, #35B8E0);
    border-radius: 2px;
}

.contact-us-header img {
    width: fit-content;
    height: fit-content;
}

.contact-us-text {
    font-size: 1.125rem;
    color: #3a3838;
    font-weight: 500;
    margin-top: 1rem;
}

.contact-us-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 2.0625rem;
    gap: 2rem;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-us-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 280px;
    }
}

.contact-us-card {
    position: relative;
    background: linear-gradient(135deg, #edf5fb, #f5f9fc);
    padding: 2.5rem 2rem 2rem 5.25rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(13, 104, 157, 0.1);
    border: 1px solid rgba(11, 102, 158, 0.08);
}

.contact-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 104, 157, 0.18);
    border-color: rgba(11, 102, 158, 0.15);
}

.advisor-title {
    font-size: 0.875rem;
    color: #4a9a6d;
    font-weight: bold;
    margin-top: 1.6875rem;
}

.advisor-name {
    font-size: 1.125rem;
    color: #000000;
    font-weight: bold;
    margin-top: 0.75rem;
}

.contacts-methods-container {
    display: flex;
    gap: 3.125rem;
}

.contact-method {
    display: flex;
    gap: 0.5625rem;
}

.contact-method.phone {
    text-decoration: none;
}

.contact-method img {
}

.contact-method p {
    font-weight: 500;
    color: #5e5c5c;
    font-size: 1.125rem;
}

.contact-shape {
    position: absolute;
    top: 0;
    left: 0;
}

.major-plan-title {
    color: #0d689d;
    font-size: 1.375rem;
    font-weight: bold;
    margin-top: 3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.major-plan-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0d689d, #35B8E0);
    border-radius: 2px;
}

.major-details-button {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 0.5626rem;
    border: 1px solid #0f62ac;
    margin-bottom: 1.25rem;
    text-decoration: none;
    flex: 1;
    display: flex;
    justify-content: center;
}

.major-details-button p {
    margin: 0;
    color: #0f62ac;
    font-size: 0.9rem;
    font-weight: 500;
}

.semester-menu {
    color: #000;
    width: fit-content;
    font-size: 1.125rem;
    font-weight: 500;
    border: 1px solid rgba(11, 102, 158, 0.15);
    box-shadow: 0 4px 16px rgba(13, 104, 157, 0.12);
    margin-top: 0.875rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0.75rem 1.25rem 0.75rem 3rem;
    border-radius: 0.75rem;
    background-color: #fff;
    background-image: url("../icons/down_arrow.svg");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.semester-menu:hover {
    border-color: rgba(11, 102, 158, 0.3);
    box-shadow: 0 6px 20px rgba(13, 104, 157, 0.18);
}

.semester-menu:focus {
    outline: none;
    border-color: #0f62ac;
    box-shadow: 0 0 0 3px rgba(15, 98, 172, 0.1),
                0 6px 20px rgba(13, 104, 157, 0.18);
}

.semester-menu option {
    color: #000;
    width: 20rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.courses {
    margin-top: 1.25rem;
    width: 100%;
    font-size: 1.125rem;
    color: #6e6c6c;
    font-weight: 500;
    text-align: center;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(13, 104, 157, 0.08);
}

.courses thead {
    background: linear-gradient(135deg, #edf5fb, #f5f9fc);
    font-size: 1.125rem;
    color: #0d689d;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 10;
}

.courses th {
    padding: 1.25rem 1rem;
    border-bottom: 2px solid rgba(11, 102, 158, 0.15);
}

.courses th:first-child {
    border-top-left-radius: 0.75rem;
}

.courses th:last-child {
    border-top-right-radius: 0.75rem;
}

.courses tbody tr {
    transition: all 0.2s ease;
}

.courses tbody tr:nth-child(odd) {
    background-color: #f7f7f9;
}

.courses tbody tr:hover {
    background-color: rgba(237, 245, 251, 0.6);
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(13, 104, 157, 0.08);
}

.courses td {
    margin: 0.7rem;
    padding: 0,5rem ;
    border-bottom: 1px solid rgba(11, 102, 158, 0.06);
}

.course-number {
    color: #5f96c7;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(95, 150, 199, 0.1), rgba(95, 150, 199, 0.05));
    border-radius: 0.5rem;
    display: inline-block;
}

.contact-us-card-details {
    display: flex;
    gap: 1rem;
}

.contact-us-card-details img {
    width: fit-content;
    height: fit-content;
    transition: transform 0.3s ease;
}

.contact-us-card:hover .contact-us-card-details img {
    transform: scale(1.1) rotate(5deg);
}

.contact-us-card-data {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #000000;
}

.contact-name {
    font-size: 1rem;
    font-weight: 500;
    color: #3a3838;
    white-space: nowrap;
}

.number-container {
    display: flex;
    gap: 0.5rem;
}

.number-container img {
    width: fit-content;
    height: fit-content;
}

.number-container p {
    font-size: 1.125rem;
    font-weight: 500;
    color: #5e5c5c;
}

.whatsapp-button {
    background: linear-gradient(135deg, #51a45c, #45924f);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.625rem 1.5rem;
    width: fit-content;
    border-radius: 0.75rem;
    margin-top: 1.5625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(81, 164, 92, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(81, 164, 92, 0.4);
    background: linear-gradient(135deg, #5bb566, #51a45c);
}

.whatsapp-button:active {
    transform: translateY(0);
}

.whatsapp-button.disabled,
.whatsapp-button[style*="pointer-events: none"] {
    background: linear-gradient(135deg, #D1D3D4, #b8b9ba) !important;
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(209, 211, 212, 0.3);
}

.whatsapp-button.disabled:hover,
.whatsapp-button[style*="pointer-events: none"]:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(209, 211, 212, 0.3) !important;
}

.whatsapp-button img {
    width: fit-content;
    height: fit-content;
    position: relative;
    z-index: 1;
}

.whatsapp-button p {
    font-weight: bold;
    font-size: 0.9rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .column-container {
        width: 100%;
    }

    .parent-container {
        width: 95%;
        padding: 1.5rem 1rem;
        margin-top: 1rem;
    }

    .major-info-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .icon-container {
        width: 5.5rem;
        height: 5.5rem;
        margin-bottom: 1rem;
    }

    .card-icon {
        width: 4rem;
        height: 4rem;
    }

    .card-shape {
        width: 100%;
        height: 100%;
    }

    .major-info-sub-container {
        margin-right: 0;
        width: 100%;
    }

    .major-name {
        font-size: 1.25rem;
    }

    .major-info {
        margin-right: 0;
        margin-top: 1rem;
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .major-info p {
        margin: 0;
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }

    .overview {
        width: 90%;
        text-align: justify;
        margin-right: 0;
        padding: 1rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .job-opportunities-container {
        margin-top: 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .jobs-opportunities {
        width: 100%;
        margin-right: 0;
    }

    .job-opportunities-title {
        font-size: 1.125rem;
    }

    .jobs-opportunities li {
        font-size: 0.9rem;
    }

    .video-container {
        width: 100%;
        min-height: 250px;
        margin-top: 0;
        border-radius: 0.75rem;
    }

    .video-container iframe {
        min-height: 250px;
        aspect-ratio: 16 / 9;
    }

    .contact-us-container {
        margin-top: 2rem;
    }

    .contact-us-title {
        font-size: 1.125rem;
    }

    .contact-us-text {
        font-size: 1rem;
    }

    .contact-us-cards-container {
        gap: 1rem;
        flex-direction: column;
    }

    .contact-us-card {
        width: 100%;
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .contact-us-card-details {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-title {
        font-size: 1rem;
    }

    .contact-name {
        font-size: 0.9rem;
    }

    .contacts-methods-container {
        flex-wrap: wrap;
        margin-right: 0;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .number-container p {
        font-size: 1rem;
    }

    .whatsapp-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin-top: 1rem;
    }

    .major-plan-title {
        font-size: 1.125rem;
        margin-top: 2rem;
    }

    .semester-menu {
        width: 100%;
        font-size: 1rem;
        padding: 0.625rem 1rem 0.625rem 2.5rem;
        background-position: left 0.75rem center;
        background-size: 12px;
    }

    .courses {
        width: 100%;
        font-size: 0.875rem;
    }

    .courses th {
        font-size: 0.9rem;
        padding: 0.875rem 0.5rem;
    }

    .courses td {
        font-size: 0.875rem;
        padding: 0.75rem 0.5rem;
    }

    .course-number {
        font-size: 0.875rem;
        padding: 0.2rem 0.5rem;
    }

    .register-button {
        position: fixed;
        bottom: 5%;
        left: 5%;
        align-items: center;
        z-index: 1000;
        box-shadow: 0 6px 20px rgba(15, 98, 172, 0.4);
        overflow: hidden;
        cursor: pointer;
        padding: 0.75rem 1.25rem;
        white-space: nowrap;
    }

    .fab-text {
        font-size: 1rem;
        font-weight: bold;
    }

    .register-button.shrunk {
        width: 3.5rem;
        height: 3.5rem;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease-in;
    }

    .register-button.shrunk img {
        margin: 0 auto;
    }

    .register-button.shrunk p {
        opacity: 0;
        pointer-events: none;
        display: none;
    }

    .fab.shrunk .fab-text {
        opacity: 0;
        pointer-events: none;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .parent-container {
        width: 92%;
        padding: 2rem;
    }

    .major-name {
        font-size: 1.35rem;
    }

    .video-container {
        width: 45%;
        min-height: 350px;
    }

    .video-container iframe {
        min-height: 350px;
    }

    .job-opportunities-container {
        gap: 1.5rem;
    }

    .contact-us-cards-container {
        gap: 1.5rem;
    }

    .semester-menu {
        font-size: 1.05rem;
    }

    .courses {
        font-size: 1rem;
    }

    .courses th,
    .courses td {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .parent-container {
        padding: 1rem 0.75rem;
    }

    .icon-container {
        width: 4.5rem;
        height: 4.5rem;
    }

    .card-icon {
        width: 3.25rem;
        height: 3.25rem;
    }

    .major-name {
        font-size: 1.1rem;
    }

    .major-info p {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .overview {
        font-size: 0.85rem;
        padding: 0.75rem;
    }

    .job-opportunities-title,
    .contact-us-title,
    .major-plan-title {
        font-size: 1rem;
    }

    .job-opportunities-text,
    .jobs-opportunities li {
        font-size: 0.85rem;
    }

    .video-container {
        min-height: 200px;
    }

    .video-container iframe {
        min-height: 200px;
    }

    .contact-us-text {
        font-size: 0.9rem;
    }

    .contact-us-card {
        padding: 1.5rem 1rem;
    }

    .contact-title {
        font-size: 0.9rem;
    }

    .contact-name,
    .number-container p {
        font-size: 0.85rem;
    }

    .whatsapp-button {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }

    .semester-menu {
        font-size: 0.9rem;
        padding: 0.5rem 0.875rem 0.5rem 2.25rem;
    }

    .courses {
        font-size: 0.75rem;
    }

    .courses th,
    .courses td {
        padding: 0.625rem 0.375rem;
        font-size: 0.8rem;
    }

    .register-button {
        bottom: 3%;
        left: 3%;
        padding: 0.625rem 1rem;
    }

    .register-button img {
        width: 20px;
        height: 20px;
    }

    .register-button p {
        font-size: 0.8rem;
    }

    .register-button.shrunk {
        width: 3rem;
        height: 3rem;
    }
}

/* ============================================================================
   Course description popup (triggered by clicking a row in the study plan)
   ============================================================================ */
.course-row {
    cursor: pointer;
}

.course-desc-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(15, 25, 40, 0.6);
}

.course-desc-overlay.is-open {
    display: flex;
}

.course-desc-modal {
    width: 100%;
    max-width: 760px;
    max-height: 85vh;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(11, 102, 158, 0.35);
    direction: rtl;
}

.course-desc-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #212529;
    border-bottom: 1px solid rgba(11, 102, 158, 0.1);
}

.course-desc-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    color: #d32f2f;
    font-size: 1.75rem;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.course-desc-modal__close:hover {
    transform: scale(1.1);
}

.course-desc-modal__body {
    padding: 0;
    overflow-y: auto;
}

.course-desc-modal__text {
    margin: 0;
    padding: 1.5rem;
    color: #3a3838;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.9;
    text-align: justify;
    white-space: pre-line;
}

@media (max-width: 768px) {
    .course-desc-modal {
        max-width: 100%;
        max-height: 90vh;
    }

    .course-desc-modal__head {
        font-size: 1.05rem;
        padding: 1rem 1.25rem;
    }

    .course-desc-modal__text {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
}
