#battle-log {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 550px;
    height: 220px;
    overflow-y: hidden;
    background: rgba(0, 0, 20, 0.7);
    border-radius: 10px;
    padding: 0.8rem;
    font-family: monospace;
    color: #60f0ff;
    border: 1px solid #4040ff;
    box-shadow: 0 0 15px rgba(64, 64, 255, 0.5);
    backdrop-filter: blur(5px);
    z-index: 100;
    transition: all 0.3s ease;
}

#battle-log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(64, 64, 255, 0.5);
}

#battle-log-title {
    font-weight: bold;
    color: #ffcc00;
}

#battle-log-toggle {
    background: none;
    border: none;
    color: #60f0ff;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    box-shadow: none;
}

#battle-log-toggle:hover {
    color: #ffcc00;
    background: none;
    box-shadow: none;
    transform: none;
}

#battle-log-content {
    height: calc(100% - 30px);
    overflow-y: auto;
    padding-right: 5px;
}

#battle-log.minimized {
    height: 40px;
    overflow: hidden;
}