/* ゲームログ */
.game-log {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 25%;
    max-width: 300px;
    min-width: 250px;
    height: 30%;
    max-height: 400px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #3498db;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.game-log-header {
    padding: 10px 15px;
    background: #3498db;
    color: white;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #2980b9;
}

.game-log-header h4 {
    margin: 0;
    font-size: 0.9em;
    text-align: center;
}

.game-log-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    font-size: 0.8em;
    line-height: 1.3;
}

.log-entry {
    margin-bottom: 8px;
    padding: 5px;
    border-radius: 4px;
    background: rgba(52, 152, 219, 0.1);
    border-left: 3px solid #3498db;
}

.log-entry.success {
    background: rgba(39, 174, 96, 0.1);
    border-left-color: #27ae60;
}

.log-entry.warning {
    background: rgba(243, 156, 18, 0.1);
    border-left-color: #f39c12;
}

.log-entry.error {
    background: rgba(231, 76, 60, 0.1);
    border-left-color: #e74c3c;
}

.log-entry.log-visibility-private {
    border-left-color: #f39c12;
}

.log-entry.log-visibility-system,
.log-entry.log-visibility-debug {
    background: rgba(127, 140, 141, 0.12);
    border-left-color: #7f8c8d;
}

.log-audience {
    color: #666;
    font-size: 0.7em;
    font-weight: bold;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.log-card-name {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 2px;
}

.log-effect-name {
    color: #555;
    font-size: 0.75em;
    margin-left: 10px;
}

.log-turn-info {
    background: rgba(52, 152, 219, 0.2);
    border-left-color: #3498db;
    font-style: italic;
}

.log-timestamp {
    color: #666;
    font-size: 0.75em;
    margin-right: 8px;
}

.log-message {
    color: #333;
    font-weight: 500;
}
