29 lines
430 B
CSS
29 lines
430 B
CSS
.video-container {
|
|
position: relative;
|
|
width: 100%;
|
|
max-width: 768px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.webcam {
|
|
width: 100%;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.alert-warning {
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: #facc15; /* Yellow */
|
|
color: #000;
|
|
padding: 12px;
|
|
border-radius: 6px;
|
|
margin-top: 16px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.button-container {
|
|
margin-top: 24px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|