.search-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 20px;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
.video-container {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.video {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.capture-button {
|
|
padding: 12px 20px;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
background-color: #007bff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.capture-button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
.image-preview {
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.captured-image {
|
|
max-width: 100%;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.upload-container{
|
|
margin-top: 12px;
|
|
}
|