/* My Worlds Page Styles */
.worlds-container {
    width: 100%;
}

.worlds-panel {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    color: white;
}

.usage-info {
    margin-bottom: 30px;
}

.usage-info h3 {
    font-size: 20px;
    font-weight: 500;
}

.world-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.world-item {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.world-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.world-name {
    font-size: 16px;
}

.world-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.control-btn:hover {
    background-color: #333;
}

.play-btn {
    color: #4CAF50;
}

.stop-btn {
    color: #F44336;
}

.world-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #aaa;
}

.server-ip {
    font-size: 14px;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .world-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .world-details {
        flex-direction: column;
        gap: 5px;
    }
}