:root {
    
    .flower-ring-section {
        width: 100%;
        height: 100vh;
        padding: 0;
        margin: 0;
        background-color: var(--primary);
    }

    .flower-ring {
        width: 100%;
        max-width: 680px;
        height: 100vh;
        background-image: url("/static/images/flower-ring.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        align-items: center;
        margin: 0px;
        padding: 0px;
        padding-bottom: 30px;
    }

    .name-title {
        margin-top: 2.75rem;
        font-family: Sacramento;
        font-size: 46px;
    }

    .rings {
        width: 100px;
        height: 58px;
    }

    .ta-list-item {
        margin-top: 0rem;
    }

    .card-header-image {
        width: 280px;
        height: 100%;
        border-radius: 10px;
    }

    .burger-menu {
        display: inline;
        position: sticky;
        top: 0;
        left: 0;
        margin: 0;
        border: 0;
        color: var(--foreground);
    }

    .main {
        margin-block-start: 0;
        padding-block-start: 0;
    }

    .topnav {
        background-color: var(--primary);
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .section-title {
    position: relative;
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
}

.icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-40%);
    margin-left: 0px; /* Adjust as needed */
}

.section-title h2 {
    width: 100%;
    text-align: center;
    padding-left: 0px; /* Adjust based on icon width + margin */
    box-sizing: border-box;
}

    .feather-small {
        width: 16px;
        height: 16px
    }

    [data-sidebar-layout] {
        gap: 0 !important;
    }

    .subtext {
        max-width: 250px;
        font-size: 28px;
    }
    
    .badge-warning {
        background-color: var(--warning);
    }

    .badge-success {
        background-color: var(--success);
    }

    .badge-danger {
        background-color: var(--danger);
    }

    /* extra small devices (phones) */
    @media only screen and (max-width: 600px) {
        .name-title {
            font-size: 32px;
        }
         .rings {
            width: 65px;
            height: 38px;
         }
         .ta-list-item{
            margin-top: 1.5rem;
         }
         .card-header-image {
            max-width: 280px;
         }
         .subtext {
            max-width: 175px;
            font-size: 20px;
         }
    }
    
    /* small devices (portrait tablets, large phones) */
    @media only screen and (min-width: 600px) {
        .name-title {
            font-size: 32px;
        }
        .ta-list-item{
            margin-top: 1.5rem;
         }
        .card-header-image {
            max-width: 450px;
         }
         .subtext{
            max-width: 175px;
            font-size: 20px;
         }
    }

    /* medium devices (landscape tablets) */
    @media only screen and (min-width: 768px) {
        .subtext{
            max-width: 200px;
            font-size: 24px;
        }
    }

    /* large devices (laptops, desktops) */
    @media only screen and (min-width: 992px) {
        .ta-list-item{
            margin-top: 0;
        }
        .name-title{
            font-size: 48px;
        }
        .subtext{
            max-width: 250px;
            font-size: 28px;
        }
    }

    /* extra large devices (large laptops and desktops) */
    @media only screen and (min-width: 1200px) {
    }
}