main {
    margin-top: 50px;
    margin-bottom: 75px;
    background:transparent !important;
}

#main-banner {
    background: url('../../images/library/1200px-Grey_background.jpeg') repeat;
}

.light-white{
    background-color:#F5EFF4;
}
.submissionBtn{
    max-width:800px
}

.glass-container {
    background-color: rgba(255, 255, 255, 0.2); /* More transparent background */
    backdrop-filter: blur(10px); /* Apply backdrop blur */
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto;
}

/* Additional styling for content within the container */
.content {
    color: white;
    text-align: center;
}

.w-700{
    width: 700px !important;
}

body {
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    color: #333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}
.glass-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.container-landing {
    font-size: 16px;
}
.glass-button {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    color: white;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.glass-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}
.header-logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.header-title {
    flex: 1;
    text-align: center;
    max-width: 600px;
}
.meeting-highlight {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.submission-alert {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    color: #856404;
    border-radius: 12px;
    padding: 1.5rem;
    font-weight: 500;
}
.important-dates {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}
.guidelines-list, .system-info-list, .troubleshooting-list {
    list-style: none;
    padding-left: 0;
}
.guidelines-list li, .system-info-list li, .troubleshooting-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}
.guidelines-list li:before, .system-info-list li:before, .troubleshooting-list li {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}
.guidelines-list li:last-child, .system-info-list li:last-child, .troubleshooting-list li:last-child {
    border-bottom: none;
}
.contact-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
}
.footer-note {
    background: rgba(255, 255, 255, 0.7);
    border-top: 1px solid #e9ecef;
    padding: 2rem;
    text-align: center;
    font-style: italic;
}
@media (max-width: 768px) {
    .header-title h1 {
        font-size: 1.75rem;
    }
    .w-700 {
        width: 100%;
    }
}
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #0056b3;
    text-decoration: underline;
}