
.conversation-footer {
    font-size:14px;
}



/* General wrapper flex */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main area fallback styles for pages without has-right */
.main-area {
    display: flex;
    flex: 1;
    justify-content: space-between;
    position: relative;
    padding: 0 80px;
    margin-top: 60px;
    min-height: 60vh;
    box-sizing: border-box;
    padding-bottom: 50px; /* Matches footer height */

}

/* Fix for sidebar selector typo removed */
.sidebar {
    z-index: 1;
    background-color: #fff;
    padding: 15px;
    box-sizing: border-box;
    width:25%;
}

/* Background gap for non has-right pages */


/* Content */
.content {
    z-index: 1;
    padding: 15px;
    box-sizing: border-box;
    width:80%;
    background-image: url('/img/logos/aviation_logo.png');
    background-repeat: repeat-y;
    background-position: center center;
    background-size: 60% auto;
    z-index: 1;
    min-height:800px;
}


/* Footer base */

footer {
    position: relative;
    margin-top: 2px; /* Adjust to create enough space */
    left: 0;
    bottom: 0px;
    width: 100%;
    color: #000;
    text-align: center;
    border-top: 2px solid #0055aa; /* Debug */
}

/* Static list styles */










.fa-instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem; /* Adjust as needed */
}
.icon-container.fb {
    position: relative;
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1877F2; /* Official Facebook Blue */
    justify-content: center;
    align-items: center;
}

.icon-container.fb i {
    color: white; /* White Facebook "f" */
    font-size: 2rem;
}

/****LESSONS SECTION ****/
/* Category Buttons */
#categories {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Makes buttons stretch to full container width */
    max-width: 300px; /* Optional: limits width */
    margin: 0 auto; /* Optional: centers the column */
}

#categories button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 10px;
    font-size: 16px;
    border-radius: 5px;
    margin: 2px 0; /* vertical spacing only */
    cursor: pointer;
    transition: 0.3s;
    width: 100%; /* Full width of parent */
    box-sizing: border-box;
}


#categories button:hover {
    background-color: #0056b3;
}



/* Responsive media query */

