body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 90%;
}

#video-container {
    position: relative;
    display: inline-block;
}

video {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

#overlay-text {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    background-color: rgba(0,0,0,0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

#banner-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 90%;
    max-width: 300px;
    height: 40px;
    background-color: #000;
    border: 3px solid #000;
    border-radius: 20px;
    overflow: hidden;
    z-index: 10;
}

.banner-left {
    background-color: #dc3545;
    color: white;
    font-weight: bold;
    font-size: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 100%;
    border-top-left-radius: 17px;
    border-bottom-left-radius: 17px;
    min-width: 100px;
}

.banner-middle {
    flex: 1;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-right {
    background-color: #dc3545;
    color: white;
    font-weight: bold;
    font-size: 12px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 100%;
    border-top-right-radius: 17px;
    border-bottom-right-radius: 17px;
    min-width: 50px;
}

button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}

#quality-controls {
    margin: 10px 0;
    text-align: center;
}

#resolution-select {
    margin: 5px;
}

#quality-slider {
    width: 200px;
    margin: 0 10px;
}

canvas {
    margin-top: 20px;
    border-radius: 10px;
    max-width: 100%;
}

a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

a:hover {
    background-color: #218838;
}

#start-record {
    background-color: #28a745;
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    border: none;
    border-radius: 5px;
}

#start-record:hover {
    background-color: #218838;
}

#stop-record {
    background-color: #dc3545;
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    border: none;
    border-radius: 5px;
}

#stop-record:hover {
    background-color: #c82333;
}

#download-video {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #17a2b8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

#download-video:hover {
    background-color: #138496;
}
