.calc-body {
    width:100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:10px;
}

.calc-text {
    font-size:16px;
    font-weight: 600;
}

.calc {
    width:80%;
    border:1px solid black;
    padding:10px;
    background: linear-gradient(176deg,rgba(0, 253, 233, 1) 0%, rgba(120, 0, 155, 1) 100%);
}

.direct-title {
    display:flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    border-top:1px solid black;
    border-bottom:1px solid black;
    width:100%;
}

.direct-users {
    display:flex;
    width:100%;
    justify-content: space-around;
    padding:10px;
}

.calc-footer {
    display:flex;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    border-top:1px solid black;
    background-color:white;
}


@media screen and (max-width: 490px){
    .calc {
        width: 100%;
        border: 1px solid black;
        padding: 10px;
        background: linear-gradient(176deg,rgba(0, 253, 233, 1) 0%, rgba(120, 0, 155, 1) 100%);
    }
    
    .direct-users {
        display:flex;
        flex-direction: column;
        align-items: center;
    }

    .directs {
        display: flex;
        flex-direction: column;
        align-items: center; 
        gap: 8px;
        padding: 0; 
        margin: 0; 
        border: none; 
    }

    .signup-box {
        display: flex;
        flex-direction: column;
        align-items: center; 
        gap: 8px;
        padding: 0; 
        margin: 0; 
        border: none; 
    }

    .result {
        text-align: center;
    }
}