* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body {
    background-color: #000000;
    color: #00ff00;
    min-height: 100vh;
    cursor: pointer;
    overflow: hidden;
}

.log-container {
    background-color: #000000;
    border: 2px solid #cccccc; 
    border-radius: 5px;
    margin: 10px;
    height: calc(100vh - 20px);
    padding: 20px;
    overflow-y: scroll; 
    overflow-x: hidden; 
    position: relative; 
}

.log-container::-webkit-scrollbar {
    display: none; 
}

.log-container {
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.tabs {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    padding: 5px 0 0 5px;
    width: 100%; 
}

.tab {
    background-color: #000000;
    color: #888888;
    cursor: pointer;
    border: 1px solid #cccccc;
    border-bottom: none;
    font-size: 12px;
    position: relative;
    top: -1px;
    text-align: center;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    margin-right: 2px; 
    flex: 1; 
    min-width: 0; 
    max-width: 100%; 
    padding: 5px 0; 
}

.tab:hover {
    color: #00aaff;
}

.tab.active {
    background-color: #000000;
    color: #00ff00;
    border-bottom: 1px solid #000000; 
    z-index: 2;
    font-weight: 600;
}

.tab-content {
    display: none;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 10px; 
}

.tab-content.active {
    display: block;
}

.tab-content::-webkit-scrollbar {
    display: none;
}

.tab-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tab-inner-content {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    padding: 10px;
}

.tab-inner-content h3 {
    margin-bottom: 15px;
    color: #00ff00;
    border-bottom: 1px solid #333333;
    padding-bottom: 8px;
}

.tab-inner-content p {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 10px;
}

.log-content {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    line-height: 1.5;
    white-space: pre-wrap; 
    word-wrap: break-word; 
    word-break: break-all; 
}

.log-message {
    margin-bottom: 5px;
}

.log-time {
    color: #00ff00;
    font-weight: 600;
}

.log-info {
    color: #00aaff; 
}

.log-usage {
    color: #888888;
}

.log-error {
    color: #ff4444;
}

.log-success {
    color: #00aaff; 
}

.log-warning {
    color: #00aaff; 
}

.log-connected {
    color: #00ffff;
}

.log-disconnected {
    color: #ff4444;
}

.log-url {
    color: #ffff00;
}

.game-type-header {
    cursor: pointer;
    padding: 5px 0;
    margin: 5px 0;
    border-bottom: 1px solid #333333;
}

.game-type-header:hover {
    background-color: #111111;
}

.game-list {
    display: none;
    margin-left: 20px;
    padding: 5px 0;
}

.game-item {
    color: #ffffff;
    margin: 3px 0;
}

.toggle-icon {
    color: #00aaff;
    margin-left: 5px;
    font-size: 12px;
}

.roulette-counter,
.blackjack-counter,
.baccarat-counter {
    color: #00aaff; 
    font-weight: bold;
}
