#myRoom {
    width: 1200px;
    min-width: 1200px;
    max-width: 1200px;
    height: 580px;
    left: 110px;
    top: 20px;
}

#myRoom .window-content {
    padding: 0;
    overflow: hidden;
}

.my-room-layout {
    display: flex;
    height: 100%;
    gap: 0;
}

/* LEFT SIDEBAR - 200px */
.my-room-sidebar {
    width: 200px;
    background: #ffccf1;
    border-right: 2px solid #fb2d9b;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    font-size: 11px;
}

.dialogue-box {
    background: white;
    border: 2px solid #fb2d9b;
    padding: 10px;
    border-radius: 4px;
}

.dialogue-box p {
    margin: 0 0 8px 0;
    font-style: italic;
}

.dialogue-box p:last-child {
    margin-bottom: 0;
}

.captains-log {
    flex-shrink: 0;
}

.captains-log h3, .webrings h3 {
    margin: 0 0 8px 0;
    font-size: 12px;
    color: #fb2d9b;
}

.log-entries {
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #fb2d9b;
    padding: 6px;
    background: white;
}

.log-entry {
    font-size: 10px;
    padding: 4px 0;
    border-bottom: 1px solid #ffccf1;
}

.log-date {
    color: #fb2d9b;
    font-weight: bold;
    margin-right: 4px;
}

.webrings h3 {
    margin: 0 0 8px 0;
    font-size: 12px;
    color: #fb2d9b;
}

.webring-info {
    background: white;
    padding: 8px;
    border: 1px solid #fb2d9b;
    font-size: 10px;
    margin-bottom: 8px;
}

.webring-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: white;
    padding: 6px;
    border: 1px solid #fb2d9b;
}

.webring-arrow {
    background: #fe81cf;
    border: 1px solid #fb2d9b;
    color: white;
    cursor: pointer;
    padding: 2px 8px;
    font-weight: bold;
}

.webring-status {
    font-size: 10px;
    margin: auto;
}

.pageviews {
    margin-top: auto;
    padding-top: 12px;
    font-size: 10px;
    text-align: center;
    border-top: 1px solid #fb2d9b;
}

/* RIGHT ILLUSTRATION - 1000px */
.my-room-illustration {
    flex: 1;
    position: relative;
    background: #f0e0f0;
    overflow: hidden;
}

.bedroom-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.clickable-item {
    position: absolute;
    cursor: pointer;
    transition: transform 0.2s ease;
    z-index: 10;
}

.clickable-item:hover {
    transform: scale(1.1);
    z-index: 20;
}

.clickable-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.hover-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fe81cf;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    font-family: 'MS Sans Serif', monospace;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    margin-bottom: 6px;
    border: 1px solid #fb2d9b;
}

.clickable-item:hover .hover-tooltip {
    opacity: 1;
}