@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
}

.head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    display: flex;
    background: #3E3E3E;
    align-items: center;
    justify-content: center;
}

.head h1 {
    font-weight: 300;
    font-size: 20px;
    color: #FFF;
}

#content {
    width: 768px;
    box-sizing: border-box;
    padding: 10px 10px 50px 10px;
    position: relative;
    margin-top: 50px;
}

an-panel{
    height: 500px;
}

#selector{
    margin-bottom: 20px;
    height: 60px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 800px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #474646;
    font-size: 14px;
}

#selector textarea{
    flex-grow: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    margin-right: 10px;
    resize: none;
    height: 100%;
    box-sizing: border-box;
}

#selector textarea:focus {
    outline: none;
    border: 1px solid #e6773d;
}

#selector button {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    background-color: #e6773d;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    height: 100%;
}

#selector button:hover {
    opacity: 0.8;
}

#selector select{
    height: 30px;
    padding: 0 10px;
}

#panel-wrapper, #explanation{
    padding: 0 5px;
}

#explanation p, .dataset-info p{
    line-height: 22px;
    color: #474646;
    font-size: 15px;
}



#create-chart{
    height: 30px;
}