.container {
    width: 70% !important;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    margin: 0;
}

.data-panel {
    width: 30%;
    position: absolute;
    left: 0;
    top: 80;
    height: 100%;
    background-color: #000000;
    padding: 20 50 50 50;
    margin: 0;
    overflow-y: auto;
    z-index: 1;
}

.clear-button {
    text-decoration: underline;
    opacity: 0.5;
    transition: 0.3s;
    cursor: pointer;
}

.clear-button:hover {
    opacity: 1;
}

.info-icon {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
    opacity: 0.75;
    transition: 0.2s;
    z-index: 5;
}

.info-panel {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: auto;
    max-width: 18%;
    height: auto%;
    background-color: #000000;
    border: 2px solid #cccccc;
    overflow: auto;
    padding: 15px;
    transition: 0.2s;
    border-radius: 8px;
    z-index: 5;
}

.info-panel p {
    word-wrap: break-word;
    white-space: normal;
}