.window {
    width:600px;
    height:500px;
    border: 3px solid purple;
    background: blueviolet;
    position: absolute;
    top: 40%;
    left: 30%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.titlebar {
    background: #5b2cc7;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    cursor: move;
}

.title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.title img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.closeButton {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 6px;
    background: crimson;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.closeButton:hover {
    background: red;
}

.windowContent{
    padding:20px;
    overflow-y:auto;
    flex:1;
}