.videobot-container {
max-width: 100%;
margin: 0 auto;
position: relative;
} .videobot-video-wrapper {
position: relative;
width: 100%;
background: #000;
border-radius: 8px;
overflow: hidden;
}
.videobot-video {
width: 100%;
height: auto;
display: block;
object-fit: contain;
max-height: 70vh;
} @media (max-width: 768px) {
.videobot-video {
max-height: 80vh;
}
} .videobot-input-section {
margin-top: 20px;
}
.videobot-input-wrapper {
display: flex;
gap: 10px;
margin-bottom: 15px;
}
.videobot-input {
flex: 1;
padding: 12px 16px;
font-size: 16px;
border: 2px solid #ddd;
border-radius: 6px;
outline: none;
transition: border-color 0.3s;
color: #000;
background: #fff;
}
.videobot-input:focus {
border-color: #0073aa;
}
.videobot-input::placeholder {
color: #999;
}
.videobot-submit-btn {
padding: 12px 24px;
font-size: 16px;
font-weight: 600;
background: #0073aa;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background 0.3s;
white-space: nowrap;
}
.videobot-submit-btn:hover {
background: #005a87;
}
.videobot-submit-btn:active {
background: #004d73;
} .videobot-suggestions {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 10px;
}
.videobot-suggestion-btn {
padding: 10px 16px;
font-size: 14px;
background: #f0f0f0;
color: #333;
border: 1px solid #ddd;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s;
}
.videobot-suggestion-btn:hover {
background: #e0e0e0;
border-color: #bbb;
} .videobot-loading {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10;
}
.videobot-spinner {
width: 50px;
height: 50px;
border: 5px solid rgba(255, 255, 255, 0.3);
border-top-color: #fff;
border-radius: 50%;
animation: videobot-spin 1s linear infinite;
}
@keyframes videobot-spin {
to { transform: rotate(360deg); }
} @media (max-width: 600px) {
.videobot-input-wrapper {
flex-direction: column;
}
.videobot-submit-btn {
width: 100%;
}
.videobot-suggestion-btn {
flex: 1 1 calc(50% - 5px);
text-align: center;
}
}