body {
    font-family: sans-serif;
    margin: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h1 {
    text-align: center;
}

#recording-area,
#replay-area {
    border: 1px solid #ccc;
    padding: 20px;
    min-height: 200px; /* Ensure area has some height */
}

#recording-area h2,
#replay-area h2 {
    margin-top: 0;
}

#recording-area {
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

button {
    padding: 10px 15px;
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

#replay-container {
    border: 1px dashed #aaa;
    background-color: #eee;
    min-height: 200px; /* Match recording area */
    position: relative; /* Needed for rrweb-player positioning */
} 