.card {
    background: #fc0000d4;
    width: 330px;
}

.toolarea {
    background: #fc0000d4;
    margin: 10px 0px;
}

.toolareaborder {
    border: 2px dashed white;
}

.text-color {
    color: #fc0000d4;
}

.text-color:hover{
    color: #fc0000d4;
}

.tag-line {
    max-width: 700px;
}

.width {
    width: 75%;
}

.progress {
    margin-top: 20px;
}

.tools-section {
    background: #fff;
}

.orientation-icon {
    cursor: pointer;
    /* Change cursor to pointer for better UX */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    /* Add margin for spacing */
}

input[type="radio"]:checked+label {
    border: 2px solid #fc0000d4;
    /* Active radio button border color */
    border-radius: 5px;
}

.padding-icon {
    cursor: pointer;
    text-align: center;
    margin: 0 10px;
    border: 2px solid transparent;
    padding: 10px;
    border-radius: 5px;
}

input[type="radio"]:checked+label.padding-icon {
    border-color: #fc0000d4;
    font-weight: bold;
}


input[type="radio"]:checked+label.orientation-icon {
    border-color: #fc0000d4;
}

@media screen and (max-width: 480px) {
    .card {
        width: 200px;
        position: relative;
        right: 4vw;
    }

    .width {
        width: 100%;
    }

    .title {
        font-size: 25px;
    }

    .tag-line {
        font-size: 10px;
    }
}