body {
    background-color: #300a24;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 10px;
}

.terminal {
    width: 100%;
    height: 500px;
    max-width: 900px;
    background-color: #2c001e;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.terminal-header {
    background-color: #3a0931;
    padding: 8px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
}

.terminal-header .buttons {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.terminal-body {
    padding: 15px;
    font-family: monospace;
    color: #ffffff;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
    word-wrap: break-word;
}

.input-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.prompt {
    color: #00ff00;
    margin-right: 5px;
    white-space: nowrap;
}

input {
    background: none;
    border: none;
    color: white;
    font-family: monospace;
    outline: none;
    flex: 1;
    min-width: 50px;
}

code{
    font-size: 17px;
}


table {
    margin: 10px;
    border: 1px dashed white;
    border-spacing: 0; 
    width: 100%; 
    border-collapse: separate; 
    border-spacing: 10px; 
}

td, th {
    color: white;
    font-weight: 600;
    border-bottom: 1px solid white;
    padding: 5px; 
}


td:nth-child(1) {
    width: 15%; 
    padding-right: 10px; 
}


td:nth-child(4) {
    width: 60%; 
    padding-left: 10px; 
}


/* Estilo da barra de rolagem para navegadores WebKit (Chrome, Safari, Edge) */
.terminal-body::-webkit-scrollbar {
    width: 10px; 
}

.terminal-body::-webkit-scrollbar-track {
    background: #1e0015; 
    border-radius: 5px; 
}

.terminal-body::-webkit-scrollbar-thumb {
    background: #4a1a3a;
    border-radius: 5px; 
    border: 2px solid #1e0015; 
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: #6a2a4a; 
}

/* Estilo da barra de rolagem para navegadores Firefox */
.terminal-body {
    scrollbar-width: thin; 
    scrollbar-color: #4a1a3a #1e0015; 
}