
    nav{
        background-color: #8f5bbd !important;
    }
    nav *{
        color: white !important;
        font-size: 18px;
        font-weight: 500 !important;
    }
    nav *:hover{
        color: #f5ba01 !important;
        transition: 3sec linear;
    }



    /* calculator */
    .calculator, .result {
        width: 600px;
        margin: 30px auto;
        border: 1px solid #8f5bbd;
        padding: 20px;
        border-radius: 8px;
    }
    .result h2{
        font-size: 1.5rem;
        font-weight: 800;
        color: #8f5bbd;

    }

    .result p{
        padding: 0;
        margin: 0;
        font-size: 1.4rem;
        font-weight: 400;
    }
    .rowc {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        position: relative;
    }

    label {
        width: 160px;
        font-weight: bold;
    }

    select, input[type="number"] {
        padding: 6px;
        margin-right: 5px;
        border: 1px solid #aaa;
        font-size: 14px;
        width: 80px;
    }

    input.year {
        width: 90px;
    }

    .calendar {
        width: 28px;
        height: 28px;
        border: 1px solid #aaa;
        background: linear-gradient(#fff, #eaeaea);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        user-select: none;
    }

    .calendar::before {
        content: "📅";
        font-size: 14px;
    }

    .calculate-btn {
        background: #8f5bbd;
        color: #fff;
        border: none;
        padding: 10px 20px;
        font-size: 15px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        border-radius: 5px;
    }

    .calculate-btn span {
        background: #fff;
        color: #5b8f2d;
        border-radius: 50%;
        padding: 2px 6px;
        font-weight: bold;
    }

    .result {
        margin-top: 20px;
        font-weight: bold;
        font-size: 16px;
    }

    /* hidden date input */
    .hidden-date {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }


    footer{
        background-color: #e1e1e1;
        padding: 10px;
    }
    footer div ul{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        list-style: none;
    }
    footer div ul a{
        color: black;
        text-decoration: none;
        font-size: 17px;
    }
    footer div ul a:hover{
        color: #8f5bbd;
    }
    footer div p{
        color: black;
        text-decoration: none;
        font-size: 17px;
        text-align: center;
    }
    


    /* other pages  */
    .ot-page{
        height: 80vh;
        margin-top: 30px;
    }

    .info{
        display: flex;
        align-items: center;
        /* justify-content: center; */

    }
    .info i{
        font-size: 2rem;
        margin: 0 10px;
    }
    .info a{
        font-size: 1.2rem;
        text-decoration: none;
        color: black;
    }
    .content-area a{
        color: #8f5bbd;
        font-weight: bolder;
        text-decoration: none;
    }