/* VMP Fence - Full Activity Log Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f1f1f1;
    color: #444;
    line-height: 1.4;
}

.vmpfence-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px 20px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}

.vmpfence-header h1 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vmpfence-logo {
    width: 24px;
    height: 24px;
    background: #00a0d2;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.back-button {
    display: inline-block;
    margin: 20px;
    padding: 8px 16px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
}

.back-button:hover {
    background: #005a87;
    color: white;
}

.activity-log-container {
    background: white;
    margin: 0 20px 20px 20px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}

.log-content {
    padding: 20px;
    font-family: Consolas, Monaco, 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.5;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    background: #fafafa;
}

.log-entry {
    margin-bottom: 1px;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.no-logs {
    color: #666;
    text-align: center;
    padding: 40px;
    font-style: italic;
}
