/* Recent Quotes Table Styling */
.quotes-table {
    width: 100%;
    max-width: var(--max_width);
    border-collapse: collapse;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
    font-size: 0.85em;
    box-sizing: border-box;
}

/* Table wrapper for better mobile scrolling */
.quotes-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    max-width: var(--max_width);
    position: relative;
}

/* Add scroll indicators on mobile */

/* Video Section Styling */
.video-section {
    max-width: var(--max_width);
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.video-section h2 {
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

@media (max-width: 768px) {
    .video-section {
        margin: 0 auto;
        padding: 0 15px;
    }
}