body {
    background-image: url('images.jpg');
    font-family: 'Roboto', sans-serif;
    color: #333; /* Dark text */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /*min-height: 100vh;*/
}

.container {
    max-width: 900px;
    max-height: 1200px;
    padding: 30px;
    border-radius: 50px;
    background-color: #B9D9EB; /* White background */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #007bff; /* Blue heading */
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 img {
    height: 225px;
    margin-right: 5px;
}

.lead {
    color: #6c757d;
    margin-bottom: 30px;
    text-align: center;
}

.btn-start {
    background-color: #2774AE;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 23px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
}

.btn-start:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.video-container {
    margin-top: 100px;
    display: flex;
    justify-content: center;
}

#webcam-container {
    border: 5px solid #fff;
    border-radius: 10px;
    overflow: hidden;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.prediction-container {
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9; /* Light gray background */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.prediction-header {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #007bff; /* Blue heading */
    text-align: center;
}

.prediction-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prediction-item {
    margin-bottom: 10px;
    color: #333; /* Dark text */
}

.successful-predictions {
    background-color: #dff0d8; /* Green background for successful predictions */
}

.unsuccessful-predictions {
    background-color: #f8d7da; /* Red background for unsuccessful predictions */
}

.footer {
    margin-top: 40px;
    text-align: center;
    color: #6c757d;
}

.footer p {
    margin-bottom: 0;
}
/* Existing styles */

.model-info-container {
    margin-top: 20px;
    display: none; /* Initially hide the model info */
}

/* New styles for model selection */
#model-selection {
    text-align: center;
    margin-bottom: 20px;
}

#model-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-model {
    background-color: #2774AE;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-model:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
