/* === majestic6040.css (pura updated with responsive video) === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}



/* Table Styles */
table {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem 1rem;
    border-collapse: collapse;
    /* background-color: #11151f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th { color: #fff; }
h1, h3 { margin:  0; padding-top: 50px; color: #333; }

.download-btn {
    display: inline-block;
    background-color: #FF9933;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

tr, th, h1 { color: #fff; text-align: center; }
tr, td, h3 { color: #fff; margin-bottom: 30px;   }

.download-btn:hover { background-color: #218838; }

/* PDF Container */
.pdf-container {
    width: 100%;
    height: 800px;
    overflow: hidden;
}

embed {
    width: 100%;
    height: 100%;
}

/* =====================
   RESPONSIVE YOUTUBE VIDEO (16:9)
===================== */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border: 3px solid #333;
    border-radius: 10px;
    margin: 1rem 0;
    pointer-events: none; /* Disable interactions */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* =====================
   RESPONSIVE MEDIA QUERIES
===================== */
@media (max-width: 992px) {
    .navbar { padding: 15px 20px; }
     tr, th, h1 {
        margin-top: 3rem;
     }
}

@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 10px; }
    .footer-container { flex-direction: column; text-align: center; }
     tr, th, h1 {
        margin-top: 3rem;
     }
}

@media (max-width: 480px) {
    .btn { padding: 8px 14px; font-size: 13px; }
     tr, th, h1 {
        margin-top: 2rem;
     }
}