Spaces:
Sleeping
Sleeping
File size: 905 Bytes
0a2f730 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | /* General styling */
body {
font-family: Arial, sans-serif;
color: #333;
}
/* Input and Autocomplete */
#movie-input {
margin-top: 0.5em;
}
#autocomplete-list {
z-index: 1000;
border: 1px solid #ccc;
border-radius: 0.25rem;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#autocomplete-list .list-group-item:hover {
background-color: #f8f9fa;
cursor: pointer;
}
/* Field Selection Checkboxes */
.form-check-label {
margin-left: 5px;
}
/* Results */
#results ul {
margin-top: 1em;
padding-left: 0;
}
#results li {
margin: 0.5em 0;
border-radius: 8px;
}
#results .spinner-border {
margin: 20px auto;
display: block;
}
/* Visualizations */
#visualizations {
margin-top: 2em;
}
#visualizations canvas {
max-height: 300px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
#visualizations .col-md-4 {
margin-bottom: 1em;
}
} |