body{
    font-family: 'Chewy', sans-serif;
    background-color: #2dfdb3;
    background-image: url("content/text.png");
    background-repeat: repeat; /* Repeats the texture */
    color: purple;
}

.table1{
    border-collapse: collapse;
    border: 3px dotted deeppink;
    width: 50%;
    height: 500px;
    padding :1px;
    background-color: pink;
    table-layout: fixed;
    margin: auto;
    /*display: block; не дает содержимому растянуться под блок*/
    text-align: center;

}

.table1 td, .table1 th {    /* чисто для ячеек*/
    width: 25%;
    padding: 10px;

}


.table2{
    border-collapse: collapse;
    border: 3px dotted deeppink;
    width: 50%;
    height: 100%;
    padding :10%;
    background-color: pink;
}




input[type=text]{
    border: 1px solid black;
    border-radius: 5px;
    padding: 10px;
    color: purple;
    background-color: whitesmoke;
    width: 80%;
}

input[type=radio]:hover{
    background-color: hotpink;
    font-size: 20px;
    padding: 10px;
    width: 50%;
    border: 1px solid purple;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    line-height: 32px;

}

select{
    border: 1px purple solid;
    background-color: whitesmoke;
}

.color-checkbox {
    width: 20px;
    height: 20px;
    appearance: none; /* Убираем стандартный стиль */
    border: 2px solid black;
    cursor: pointer;
    margin-right: 10px;
    display: inline-block;
    position: relative;
}

.red { background-color: grey; }
.blue { background-color: dimgrey; }
.green { background-color: lightslategrey; }
.yellow { background-color: darkslategrey; }

/* Галочка при выборе */
.color-checkbox:checked::after {
    content: "✔";
    font-size: 16px;
    color: white;
    position: absolute;
    left: 3px;
    top: -1px;
    font-weight: bold;
}




/* progress bar*/
.progress_bar{
    width: 170px;
    height: 20px;
    border-radius: 10px;
    background-color: #821142;
    overflow: hidden;
    border: 3px #821142;
    align-self: center;
}

.progress_fill{
    height: 100%;
    width: 0%;
    background: #88BB8B;
    transition: width 0.3s;
}

