.scoville-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.scoville-content h2 {
    color: #e63946;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.scoville-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.formula {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 1.2em;
    border: 1px solid #dee2e6;
}

.pepper-table {
    margin: 30px 0;
    overflow-x: auto;
}

.pepper-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pepper-table th {
    background-color: #e63946;
    color: white;
    padding: 12px;
    text-align: left;
}

.pepper-table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
}

.pepper-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.pepper-table tr:hover {
    background-color: #f1f3f5;
}

.scoville-content ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.scoville-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.scoville-content ul li:before {
    content: "🌶️";
    position: absolute;
    left: 0;
    top: 0;
}

/* Video Container Styles */
.video-container {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video-container h2 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.5rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 1rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.video-caption {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .scoville-content {
        padding: 15px;
    }

    .pepper-table {
        margin: 20px -15px;
    }

    .formula {
        padding: 15px;
        font-size: 1em;
    }

    .video-container {
        margin: 1.5rem 0;
        padding: 0.75rem;
    }
    
    .video-container h2 {
        font-size: 1.25rem;
    }
} 