body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fcecdb;
    margin: 0;
    padding: 20px;
    display: flex;
    gap: 20px;
    box-sizing: border-box;
}

.left-panel{
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

fieldset{
    border: 2px solid blue;
    background-color: #fcecdb;
    padding: 15px;
}

legend{
    color: blue;
    font-weight: bold;
    padding: 0 5px;
}

.radio-group{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.color-group{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.color-group input[type="color"]{
    border: 1px solid #777;
    width: 45px;
    height: 25px;
    padding: 0;
    cursor: pointer;
    background: none;
}

.btn-group{
    display: flex;
    gap: 10px;
}

button{
    padding: 3px 10px;
    font-size: 14px;
    cursor: pointer;
    background-color: #efefef;
    border: 1px solid #767676;
    border-radius: 2px;
}

ol{
    margin: 0;
    padding-left: 25px;
}

ol li{
    padding: 8px 10px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

ol li:nth-child(odd){
    background-color: #a06090;
    color: #000;
}

ol li:nth-child(even){
    background-color: #80ffff;
    color: #000;
}

.right-panel{
    width: 55%;
    background-color: #fcecdb;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

#displayText{
    font-size: 80px;
    font-weight: bold;
    color: blue;
    transition: all 0.2 ease;
}

.text-shadow{
    text-shadow: 4px 4px 6px rgba(0,0,0,0.6);
}