/* 📌 Settings Window */
#settingsContainer {
    display: none;
    position: absolute;
    width: 400px;
    height: 525px;
    background: #2a2a2a;
    border: 2px solid #444;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    top: 100px;
    left: 100px;
    z-index: 1000;
}

/* 🔲 Header */
#settingsContainer .window-header {
    background: linear-gradient(to right, #333, #555);
    padding: 8px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: grab;
    color: white;
}

/* ❌ Close Button */
#settingsContainer .close-window {
    background: red;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
}

#settingsContainer .close-window:hover {
    background: darkred;
}

/* 🖥 Settings iFrame */
#settingsFrame {
    width: 100%;
    height: 100%;
    border: none;
}
