/************************
*ELEMENT STYLE
*********************/
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
	padding: 0;
	margin: 0;
}

body {
	padding: 0;
	margin: 0;
	font: 1.0em Arial, Helvetica, sans-serif;
	background-color: #F3F3EE;
	color: black;
}

hr {
	background-color: #000000;
	border: none;
	height: 2px;
	margin-top: 10px;
}

h3 {
	font-weight: normal;
}

input[type=text],input[type=email],input[type=date],input[type=password],select {
	display: block;
    height: 30px;
    padding: 7px 7px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 14px;
    color: #000;
    line-height: 1.42857143;
    background-color: #FAFBFC;
    background-image: none;
    border:1px solid #E0E0E0;
    border-radius: 5px;
    -webkit-box-shadow: none;
    outline: none !important;
	box-sizing: border-box;
}

input[type=text]:focus,input[type=email]:focus,input[type=date]:focus,input[type=password]:focus,select:focus {
    border:1px solid #BF360C;
}

select {
    height: 33px;
}

textarea {
	display: block;
    padding: 7px 7px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 14px;
    color: #555;
    line-height: 1.42857143;
    background-color: #FAFBFC;
    background-image: none;
    border:1px solid #E0E0E0;
    border-radius: 10px;
    -webkit-box-shadow: none;
    outline: none !important;
	box-sizing: border-box;
}

textarea:focus {
    border:1px solid #BF360C;
}

button,input[type=button],input[type=submit] {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #BF360C;
    border: 1px solid #3E2723;
    border-radius: 4px;
	color: white;
    outline: none !important;
}

button:focus,input[type=button]:focus,input[type=submit]:focus {
    box-shadow: 0 0 5px #719ECE;
}

button:hover,input[type=button]:hover,input[type=submit]:hover {
    box-shadow: 0 0 5px #719ECE;
}

button:active,input[type=button]:active,input[type=submit]:active {
	color: #66737D;
	background-color: #273948;
}

button:disabled,input[type=button]:disabled,input[type=submit]:disabled {
	color:#CCCCCC;
	background-color: #1e2429;
    box-shadow: 0 0 0px;
	cursor: default;
}

a {
	color: #0893E3;
	text-decoration: none;
}

a:hover {
	/*color: #e47911;*/
	color: #33485E;
	text-decoration: none;
	cursor: pointer;
}

a.disabled, a[disabled=disabled] {
	cursor: default;
	color: gray;
	text-decoration: none;
}

a.scrollLink.activeLink {
	text-decoration: underline;
}

/************************
*GLOBAL CLASSES
*********************/
.fontMid {
	font-size: 14px;
}

.fixedBackground {
	background-position: top center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.legals {
	font-size: 10px;
	text-align: center;
}

.failure {
	color: red;
}

.success {
	color: green;
}

/************************
*ELEMENT SPECIFIC STYLE
*********************/
#titleDiv {
	margin-top: 20px;
	margin-bottom: 20px;
	font-weight: bold;
}
/* --- Modern Navigation Bar --- */
.pageHeader {
    background-color: #FFFFFF;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 70px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

#headerLogo {
    font-size: 24px;
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

#headerLogo:hover {
    color: #BF360C;
}

/* Nav Links */
#menuDrop ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: #333 !important; /* Black by default */
    padding: 10px 15px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

/* Cool Hover Effect */
.nav-link:hover {
    color: #BF360C !important;
    background-color: rgba(64, 108, 174, 0.05);
}

/* Special styling for CTA buttons */
.login-btn, .admin-link {
    color: #BF360C !important;
}

.logout-btn {
    color: #cc0000 !important;
}

#headerMenuBurger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

#headSpacer {
    height: 70px;
}

#navOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000; /* Just below menuDrop */
}

#navOverlay.active {
    display: block;
}

.menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    z-index: 1002; /* Ensure it stays above everything in the menu */
}

.menu-close i {
    font-size: 28px;
    color: #333 !important; /* Force color to show against white background */
    display: block !important; /* Force display to override .smallOnly { display: none } */
}

/* --- Mobile Responsiveness (900px and down) --- */
@media screen and (max-width: 910px) {
    #headerMenuBurger {
        display: block !important;
    }

    #menuDrop {
        display: none; /* Keep it hidden until .active is added */
        position: fixed;
        top: 0;
        right: -250px; 
        width: 250px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: 0.3s ease-in-out;
        padding-top: 60px; /* Space for the X button */
        z-index: 1001;
    }

    #menuDrop.active {
        display: block !important;
        right: 0;
    }

    #menuDrop ul {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
        gap: 0;
    }

    #menuDrop ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    #menuDrop ul li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        box-sizing: border-box;
        font-weight: 700; /* Matches the bold weight in your screenshot */
        text-align: left;
    }
}


@media screen and (min-width: 910px) {
	.smallOnly {
		display: none;
	}
}

/************************
*Page Specific
*********************/
#introDiv {
    background: url("./../images/background.jpg") center center no-repeat fixed;
    background-size: cover;
    height: 60vh; /* Uses 60% of the viewport height instead of a fixed 300px */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#introDiv .hero-box {
    background-color: rgba(243, 243, 238, 0.9); /* Slight transparency for a modern feel */
    width: 80%; /* Takes up more space on mobile */
    max-width: 600px; /* Limits size on desktop */
    font-weight: bold;
    padding: 40px;
    font-size: 2.5rem; /* Base size */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 4px;
    line-height: 1.2;
    position: static; /* Let Flexbox handle positioning */
    transform: none;
}

#introDiv .hero-box span {
    color: #BF360C; /* Using your primary blue for emphasis */
}

#homeContent {
    background-color: #000;
    color: #fff;
    padding: 60px 10%;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: normal; /* Normal weight is often more readable for long text */
}

/* --- Mobile Responsiveness --- */

@media screen and (max-width: 768px) {
    #introDiv {
        height: 50vh;
    }

    #introDiv .hero-box {
        font-size: 1.8rem;
        padding: 20px;
        width: 85%;
    }
    
    .mobile-break {
        display: none; /* Keeps it on one line if screen is too small */
    }

    #homeContent {
        padding: 40px 5%;
        font-size: 1.1rem;
    }
}

#newsletterDiv {
	text-align: center;
	padding: 20px 0px 20px 0px;
}

#newsletterDiv input {
	display: inline;
}

#verInfo {
	text-align: center;
	font-size: 12px;
}

#copyRight {
	text-align: center;
	font-size: 12px;
}
/* --- Modern Auth Container --- */
#loginContainer {
    max-width: 500px;
    margin: 40px auto;
    padding: 0 20px;
}

.tab-header {
    display: flex;
    margin-bottom: -1px; /* Align with card border */
}

.tab-btn {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: #e9ecef;
    cursor: pointer;
    font-weight: bold;
    color: #6c757d;
    border: 1px solid #dee2e6;
    border-bottom: none;
    transition: all 0.3s;
}

.tab-btn:first-child { border-top-left-radius: 8px; }
.tab-btn:last-child { border-top-right-radius: 8px; }

.tab-btn.active {
    background: #ffffff;
    color: #BF360C;
    border-top: 3px solid #BF360C;
}

.auth-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px;
}

.auth-content h3 {
    margin-bottom: 5px;
    color: #333;
}

.subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group { flex: 1; }

.form-group label {
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.required { color: red; margin-left: 3px; }

.alt-links {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal !important;
    font-size: 0.85rem;
    cursor: pointer;
}

#msgDiv {
    margin-top: 15px;
    font-size: 0.85rem;
}

.msgDiv {
    margin-top: 15px;
    font-size: 0.85rem;
}

/* --- Modal Overlay --- */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

/* --- Modal Card --- */
.modal-card {
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

.modal-header {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 { margin: 0; font-size: 1.2rem; color: #333; }

.close-modal {
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.modal-body { padding: 25px; }

.modal-body p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.modal-footer {
    padding: 15px 25px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-secondary {
    background: #e9ecef;
    border: 1px solid #ced4da;
    color: #495057;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* Animation */
@keyframes slideDown {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.3s;
    color: #333;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #BF360C;
}

.faq-question i {
    transition: transform 0.3s;
    font-size: 0.9em;
    color: #999;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid #eee;
    color: #BF360C;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px; /* Adjust if answers are very long */
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #555;
}

.legal-container {
    max-width: 850px;
    margin: 40px auto;
    padding: 0 20px;
}

.legal-content {
    background: #fff;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    line-height: 1.6;
    color: #444;
}

.legal-content section {
    margin-bottom: 30px;
}

.legal-content h2 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
}



#videoDiv {
    width: 100%;
    padding: 0 20px; /* Side padding */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.profileContainer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
}

.videoSection, .editorSection {
    width: 100%;
}

.userVideo {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 8px;
    background: #000;
    margin-bottom: 20px;
}
.inputGroup {
    margin-bottom: 10px;
}

.inputGroup input[type="text"],
.inputGroup input[type="email"],
.inputGroup input[type="date"],
.inputGroup input[type="password"],
.inputGroup select {
    width: 100%; !important;
    max-width: 100%; /* Strict cap */
    box-sizing: border-box; /* Ensures padding is calculated inside the width */
}

input[type="date"], select {
    min-width: 0; 
}

.editorSection.user-box {
    align-self: flex-start; /* Keeps it from stretching if the video side is long */
    overflow: hidden; /* Prevent any accidental horizontal scroll inside the box */
}

/* Optional: Make the labels a bit more compact for the side column */
.editorSection .inputGroup label {
    display: block;
    margin-bottom: 3px;
    font-size: 0.85rem;
}

.checkboxGroup label {
    cursor: pointer;
}

.statusBadge {
    padding: 8px 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.statusBadge::before {
    font-family: 'FontAwesome' !important; /* Force the font */
    display: inline-block;
    margin-right: 8px;
    font-weight: normal;
    vertical-align: middle;
}

/* Yellow/Warning for In Review */
.status0::before { content: "\f017"; } /* Clock icon */

/* Green/Success for Approved */
.status1::before { content: "\f058"; } /* Check-circle icon */

/* Red/Error for Declined */
.status2::before { content: "\f06a"; } /* Exclamation-circle icon */

.status0 { background-color: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.status1 { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.status2 { 
    background-color: #FBE9E7; /* Very pale terracotta */
    color: #BF360C;            /* Your theme's primary red */
    border: 1px solid #FFCCBC; /* Muted coral border */
}

.approveButDiv {
	float: right;
	padding-left: 10px;
}

.approveButDiv input {
	margin: -5px 0px 0px 0px;
	padding: 3px 3px 3px 3px;
}

#shareTbl {
	padding-top: 10px;
}

#shareTbl td {
	text-align: center;
}

.viewsTbl {
	width: 80%;
	margin:auto;
	background: #fdfdfd;
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 10px;
}

.viewsTbl th {
	width: 50%;
	text-align: center;
	font-weight: bold;
	font-size: 28px;
    color: #BF360C; /* Theme color for the numbers */
    padding-top: 10px;
}

.viewsTbl td {
	width: 50%;
	text-align: center;
	font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
}

.video-grid {
    display: grid;
    /* This makes sure cards are at least 250px, but fill the space */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    /* Centers the grid items if there is extra space */
    justify-content: center; 
    max-width: 1100px;
    margin: 0 auto;
}

.video-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
}

.video-card:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
}

.video-card img {
    width: 100%;
    height: auto;
    display: block;
}

.video-info {
    padding: 15px;
}

.video-info h4 {
    margin: 5px 0;
    font-size: 1.2em;
}

.video-info p {
    color: #666;
    font-size: 0.9em;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-times:before {
  content: "\f00d";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-map-marker:before {
  content: "\f041";
}

/* Container for video and overlay */
.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 0; /* Prevents tiny gaps at bottom */
    aspect-ratio: 16 / 9; /* Matches the video shape */
    border-radius: 8px;
    overflow: hidden; /* Keeps overlay from bleeding out */
}

/* The actual overlay */
.video-overlay {
    display: none; /* Hidden by default */
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark tint */
    z-index: 100;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 8px;
    color: white;
    line-height: normal;
}

.overlay-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.overlay-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: auto; /* Prevent from stretching */
}

/* Ensure the Learn More link looks and acts like a button */
.btn-learn {
    display: inline-block !important; /* Critical for <a> tags */
    line-height: 1.2 !important;
    background: #BF360C;
    border: 1px solid #3E2723;
    color: #fff !important; /* Force white text */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(191, 54, 12, 0.4);
    transition: all 0.3s;
}

.btn-learn:hover {
    background: #d84315;
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-replay {
    display: inline-block !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-replay i {
    margin-right: 8px;
}

#noVidDiv {
	text-align: center;
	padding: 20px;
	font-weight: bold;
}

/* --- Story Page Footer Refinements --- */
.story-header {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.story-footer {
    max-width: 800px;
    margin: 30px auto 60px;
    text-align: center;
}

.user-profile-header {
    margin-bottom: 40px;
}

.display-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.user-location {
    display: inline-block;
    background: #e9ecef;
    padding: 5px 15px;
    border-radius: 20px;
    color: #666;
    font-size: 0.9rem;
    font-weight: bold;
}

.user-location i {
    color: #BF360C;
    margin-right: 5px;
}

/* Call to Action Box */
.cta-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Subtle accent line on top of the CTA */
.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #BF360C;
}

.cta-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.cta-content p {
    color: #777;
    margin-bottom: 25px;
    font-style: italic;
}

/* Extra large version of your learn button */
.btn-learn.large {
    padding: 15px 40px;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(191, 54, 12, 0.3);
}

.imprintedInp {
	position: relative;
}

.imprintedInp span {
	position: absolute; 
	top: 6px; 
	left: 6px; 
	color: #aaa;
}

.imprintedInp input {
	width: 100%; 
	text-indent: 18px;
}

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

.admin-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Form Styling */
.admin-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #555;
}

.form-group input, .form-group select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 15px;
    border: 1px solid #3E2723;
    background: transparent;
    color: #BF360C;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
    background: #BF360C;
    color: #fff;
}

/* Table Styling */
.table-container {
    overflow-x: auto;
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid #eee;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: #f8f9fa;
    position: sticky;
    top: 0;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
}

.admin-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 0.95em;
}

.admin-table tr:hover {
    background-color: #f1f7fd;
}

.gospel-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.video-viewer-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 20px;
}

#gospelVideo {
    display: block;
}

#gospelVideo {
    display: block;
}

/* Container that forces a 16:9 aspect ratio */
.bunny-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Ratio (9 / 16 = 0.5625) */
    background: #000;
}

/* Force the iframe to fill the container exactly */
.bunny-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Updated Gospel Video constraints */
.video-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: #000;
    /* This keeps the video from getting too tall on large monitors */
    max-height: 70vh; 
    overflow: hidden;
    display: flex;
    align-items: center;
}

.video-actions {
    padding: 30px;
    background: #fdfdfd;
}

.video-actions p {
    font-style: italic;
    color: #555;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Reusing your filter-btn style for consistency */
.video-actions .filter-btn {
    text-decoration: none;
    padding: 10px 25px;
    font-weight: bold;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .sectionHeader h1 {
        font-size: 1.8em;
    }
}

.contact-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-box {
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.user-box {
    background: #fff;
    padding: 15px 20px 15px 20px; /* Slightly more padding for a cleaner look */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-top: 20px; /* Let the Grid handle the gap */
    margin-bottom: 20px;
    box-sizing: border-box;
}

.editorSection.user-box {
    margin-top: 0; /* Fixes alignment with the top of the video section */
}

.uploadPlaceHolder {
	text-align: center;
	font-weight: bold;
	color: red;
}

.headingDiv {
	display: inline-block; 
	vertical-align:middle; 
	margin-right: 10px; 
}

.headingDiv span {
	color: #000000; 
	margin-right: 5px;
}

.headingLineDiv {
	display: inline-block; 
	vertical-align:middle;
}

.headingLineDiv hr {
	width: 100px;
	margin: auto;
}

.info-item h4 {
    color: #3498db;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.info-item p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95em;
}

/* Form Specifics */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.form-group input, 
.form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sendMsgSpn {
    font-size: 0.9em;
    font-weight: bold;
}

#sendMsgSpn.success { color: green; }
#sendMsgSpn.failure { color: red; }

/* Responsive Wrap */
@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: -1; /* Puts info above form on mobile */
        text-align: center;
    }
}

/* --- Modern Footer Styling --- */
.main-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 60px 20px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #BF360C; /* Using your theme blue */
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666 !important;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #BF360C !important;
}

/* Footer Bottom Bar */
.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}

.footer-bottom #verInfo {
    margin-bottom: 5px;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        min-width: 100%;
    }
}

/*****************************
*PROGRESS BAR STYLE
*****************************/
#minUploadMsg {
	text-align: center;
}

.progressBar {
	border: 1px solid #9FB0C5;
	padding: 1px; 
	position:relative;
	width:100%;
	border-radius: 3px;
	display:none;
	text-align:left;
	margin: auto;
}
.progressBar  > div:first-child {
	height:20px;
	border-radius: 3px;
	background-color: #9FB0C5;
	width:1%;
}
.progressBar  > div:nth-child(2) {
	top:3px;
	left:50%;
	position:absolute;
	display:inline-block;
	color: #000000;
}

/************************
*GROWL STYLE
*********************/
div.growlUI
{
	background: url(./../images/error.png) no-repeat 10px 10px;
}
div.growlUI h1 {
	color: white;
	padding: 5px 5px 5px 75px;
	text-align: left;
	font-size: 20px;
}
div.growlUI h2 {
	color: white;
	padding: 5px 5px 5px 75px;
	text-align: left;
	font-size: 10px;
	line-height: 1em;
}

/***************************
**** RESPONSIVENESS CLASSES
***************************/
.titleSmallTxt {
	font-size: 14px;
	display: none;
}

@media (max-width: 600px) {
    .legal-content {
        padding: 20px;
    }
    .display-name {
        font-size: 1.8rem;
    }
    .cta-box {
        padding: 30px 15px;
    }
}

@media screen and (min-width: 600px) {
	.profileContainer {
        display: grid;
        /* minmax(0, 1fr) prevents the content from 'pushing' the column width */
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); 
        gap: 30px;
        align-items: start;
        max-width: 1200px;
        margin: 0 auto;
    }
}