body {
    background-color: #f8f9fa;
    padding-top: 56px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

.search-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.video-card {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.video-info {
    padding: 15px;
}

.video-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.video-author {
    color: #666;
    font-size: 0.9rem;
}

.video-stats {
    color: #666;
    font-size: 0.8rem;
    margin-top: 5px;
}

.navbar-brand {
    font-weight: bold;
}

.search-btn {
    border-radius: 0 5px 5px 0;
}

.total-results {
    margin-bottom: 20px;
    font-weight: bold;
    color: #555;
}

.center-search {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.center-search .input-group {
    width: 100%;
    max-width: 600px;
}

.features-section {
    background-color: #fff;
    padding: 40px 0;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    width: 100%;
    padding: 1.5rem 0;
    margin-top: auto;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-right: 15px;
}

.footer-links a:hover {
    color: white;
}

.contact-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 40px;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

#contact-response {
    display: none;
}
/* Responsive adjustments */
@media (max-width: 768px) {
   html {
     font-size: 14px;
 }
            
.contact-section {
      padding: 20px;
   }
}
        
@media (min-width: 1200px) {
   html {
     font-size: 18px;
   }
}