
/* Some root attributes */
:root{
    --box-color: rgba(0, 0, 0, 0.80);
    --white-color: white;
    --black-color: black;
    --title-color: rgba(128, 128, 128, 0.5);
    --theme-option: 18px;
    --theme-primary:#0d6efd;
    --theme-secondary: #343a40;
    --footer-border: #414141;
}


/* Body section CSS code here */
body{
    background-color: black!important;
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    max-height: auto;
    width: 100%;
}

.code-container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    max-height: auto;
    min-width: 600px;
    max-width: auto;
    padding: 40px;
    background: linear-gradient(130deg, rgb(255, 0, 221), rgb(153, 0, 255));
}

.box-dark{
    height: auto;
    min-width: 80%;
    max-width: auto;
    margin: 0px 100px;
    background-color: rgba(0, 0, 0, 0.80);
    border-radius: 20px;
    box-shadow: 0px 0px 40px 10px rgba(0, 0, 0, 0.40);
    color: white;
}

.box-light{
    color: black;
    border: 2px solid #c7c7c7e0;
    background-color: #f5f2f0;

}

.three-dot ul{
    list-style-type: none;
    display: flex;
    padding: 15px 30px;
}

.three-dot ul > li{
    padding: 2px;
    user-select: none;
}

#mac-toolbar{
    #mac-title{
        text-align: right;
        flex-grow: 3;
        color: var(--title-color);
        font-size: medium;
        font-weight:normal;
        outline: none;
    }
}

#win-toolbar,#ubuntu-toolbar{
    display: none;
    justify-content: space-between;
    color: var(--title-color);
    align-items: center;
    padding-top: 9px;
    #win-title, #ubuntu-title{
        flex-grow: 3;
        padding-left: 30px;
        color: var(--title-color);
        font-size: medium;
        font-weight:normal;
        outline: none;
    }
}


#ubuntu-toolbar ul li:first-child img,#ubuntu-toolbar ul li:nth-child(2) img{
    background-color: var(--title-color);
    border-radius: 50%;
    padding: 2px;
}

#ubuntu-toolbar ul li:last-child img{
    background-color: red;
    border-radius: 50%;
    padding: 2px;
}

#win-toolbar ul li:first-child img,#win-toolbar ul li:nth-child(2) img,#win-toolbar ul li:last-child img{
    background-color: var(--title-color);
    padding: 2px 5px;
    border-radius: 2px;
}


#code-area{
    padding: 0px 30px 40px 30px;
    font-size: 20px;
    font-weight: bold;
    height: auto;
    width: auto;
    outline: none;
    background: none;
    border: none;
}


/* Footer Section CSS code */

#footer-bar{
    position: fixed;
    display: flex;
    justify-content:center;
    align-items: center;
    width: 100%;
    bottom: 20px;
}

#footer-menu{
    border: 2px solid var(--footer-border);
    padding: 5px 10p;
    background-color: var(--box-color);
    width: fit-content;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    color: white;
    justify-content: center;
    align-items: center;
}

#footer-menu > div{
    margin: 5px;
    padding: 10px;
    border-radius: 10px;
    color: grey;
}
#footer-menu > div label{
    font-size: small;
}

/* Defining the themes of file */

div > .dropdown-menu{
    padding: 10px;
}
div > .dropdown-menu > li{
    padding: 5px;
    cursor: pointer;
    border-radius: 10px;
}

div > .dropdown-menu > li:hover{
    background-color: var(--theme-primary);
}

#theme1,#theme2,#theme3,#theme4,#theme5,#theme6,#theme7,#theme8,#theme9,#theme10,#theme11{
    height: var(--theme-option);
    width: var(--theme-option);
    border-radius: 50%;
    padding: 0px 7px;
    margin-right: 5px;
    color: transparent;
}

#theme1{
    background: linear-gradient(130deg, rgb(255, 0, 221), rgb(153, 0, 255));
}
#theme2{
    background: linear-gradient(130deg, #2E3192, #1BFFFF);
}
#theme3{
    background: linear-gradient(130deg, #D4145A, #FBB03B);
}
#theme4{
    background: linear-gradient(130deg, #aa076b, #61045f);
}
#theme5{
    background: linear-gradient(130deg, #000428, #004e92);
}
#theme6{
    background: linear-gradient(130deg, #EA8D8D, #A890FE);
}
#theme7{
    background: linear-gradient(130deg, #C33764, #1D2671);
}
#theme8{
    background: linear-gradient(130deg, #aa076b, #61045f);
}
#theme9{
    background: red;
}
#theme10{
    background: skyblue;
}
#theme11{
    background: orange;
}