﻿#DropCoder_Prompt_Container > div {
    border-radius: 10px;
}

    #DropCoder_Prompt_Container > div > table {
        font-family: Arial;
        background-color: #FFF;
        border: none;
        box-shadow: 0px 0px 4px #808080;
        border-radius: 10px;
    }

        #DropCoder_Prompt_Container > div > table > tbody > tr > td {
            background-color: #FFF;
            /*background-color: #3C3B6E;*/
        }

        /*  PROMPT TITLE    */
        #DropCoder_Prompt_Container > div > table > tbody > tr:first-child > td {
            font-weight: 500;
            font-size: 20px;
            color: #222;
            padding: 8px 20px;
            background-color: #eee;
            background-image: linear-gradient(30deg, #ddd 0%, #eee 100%);
            height: 40px;
            border-top-right-radius: 10px;
            border-top-left-radius: 10px;
        }

        #DropCoder_Prompt_Container > div > table > tbody > tr:last-child > td {
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

            /*  PROMPT OPTION BUTTONS   */
            #DropCoder_Prompt_Container > div > table > tbody > tr:last-child > td input {
                font-size: 16px;
            }

                #DropCoder_Prompt_Container > div > table > tbody > tr:last-child > td input:focus {
                    background-color: rgba(198,254,253,1);
                    color: rgba(25,60,80,1);
                    outline: none;
                }

.DropCoder-Prompt-TwoOptions td:first-child,
.DropCoder-Prompt-TwoOptions td:first-child input {
    border-bottom-left-radius: 10px;
}

.DropCoder-Prompt-TwoOptions td:last-child,
.DropCoder-Prompt-TwoOptions td:last-child input {
    border-bottom-right-radius: 10px;
}

    .DropCoder-Prompt-TwoOptions td:last-child input {
        background-color: #3BA1E3;
        /*background-color: #B22234;*/
        color: #FFF;
    }