body {
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #dcdcdc;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    background-color: #252526;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header div {
    display: flex;
    align-items: center;
}

.server-info {
    font-size: 1.2rem;
    margin-right: 20px;
}

.status {
    display: flex;
    align-items: center;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.status.connected .status-indicator {
    background-color: #4caf50;
}

.status.disconnected .status-indicator {
    background-color: #f44336;
}

#container {
    display: flex;
    flex: 1;
}

.item-part {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: background-color 0.5s;
}

#left {
    background-color: #2d2d2d;
}

#right {
    background-color: #3c3c3c;
}

textarea {
    /* flex: 1; */
    background-color: #1e1e1e;
    color: #dcdcdc;
    border: none;
    padding: 10px;
    resize: none;
    margin-top: 10px;
    font-family: "Consolas", "Courier New", monospace;
    overflow-y: auto;
    min-height: 150px;
}

textarea:focus {
    outline: none;
}

h1 {
    margin: 0;
    font-size: 1.5rem;
    color: #9cdcfe;
}

/* Highlight animation */
.highlight {
    background-color: #007acc !important;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    #container {
        flex-direction: column;
    }

    #left,
    #right {
        height: 50%;
    }
}

.asset {
    max-height: 250px;
    margin-top: 10px;
}

.midias {
    display: flex;
    justify-content: space-around;
}
