/**
 * Page-specific styles for Van-der-Waals in Biomolekülen
 */

/* Spezifische Stile für 3D-Modelle und interaktive Elemente */
.model-container {
    height: 500px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.control-btn {
    padding: 8px 15px;
    background: #0f9d58;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.control-btn:hover {
    background: #0b8043;
}

.interaction-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 0, 0.7);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    max-width: 250px;
    z-index: 20;
    display: none;
}

.sequence-highlight {
    padding: 2px 5px;
    border-radius: 3px;
    margin: 0 2px;
}

.hydrophobic {
    background-color: #ffcc80;
}

.hydrophilic {
    background-color: #90caf9;
}

.dragbox {
    border: 2px dashed #ccc;
    padding: 10px;
    margin: 15px 0;
    min-height: 50px;
}

.draggable {
    display: inline-block;
    padding: 8px;
    margin: 5px;
    background-color: #e0f2f1;
    border: 1px solid #b2dfdb;
    border-radius: 5px;
    cursor: move;
}

.sequence-display {
    line-height: 2;
    margin: 20px 0;
}

.temperature-control {
    margin: 20px 0;
}

.temperature-control input {
    width: 80%;
    margin: 10px 0;
}

.experiment-data {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 20px;
}
