body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

.heading-style {
    background: linear-gradient(to right, #1f77b4, #ff7f0e);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    margin-bottom: 20px;
}



.plot-control-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.control-panel {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.plot-container {
    flex-grow: 1;
    height: 1000px;
    min-height: 800px;
    min-width: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

.plotly .modebar {
    display: none !important;
}

.plotly .ytitle,
.plotly .xtitle,
.plotly .ztitle {
    margin: 0 !important;
}

.control-panel .btn {
    padding: 10px 16px;
    font-size: 1rem;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: background 0.2s, color 0.2s;
}

.control-panel .btn:hover {
    filter: brightness(90%);
}