
.tag {
    background: #e63946;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 8px;
}

.article-meta {
    color: #666;
    font-size: 0.9rem;
}

.feature-image {
    background: linear-gradient(45deg, #003049, #001d3d);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/800/400');
    opacity: 0.1;
    filter: blur(40px);
}

.shield-icon {
    color: #fff;
    font-size: 4rem;
    z-index: 1;
}

.sidebar-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.sidebar-card img {
    border-radius: 4px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.schedule-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.webinars {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.webinar-card {
    flex: 1 1 calc(16.333% - 05px);
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: none; /* Hide cards initially */
    margin-bottom: 10px;
    
}
.webinar-card.visible {
display: block; /* Show cards when made visible */
}
.view-more-container {
text-align: center;
margin-top: 3px;
}
#view-more-btn {
background-color: green; /* Green background */
color: white; /* White text */
border: none; /* Remove default border */
padding: 10px 10px; /* Add padding */
font-size: 14px; /* Font size */
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Pointer cursor on hover */
transition: background-color 0.3s; /* Smooth hover effect */
}

#view-more-btn:hover {
background-color: darkgreen; /* Darker green on hover */
}

.webinar-card h3 {
    margin: 0 0 10px;
    color: #000000;
}

.webinar-card .title {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin: 10px 0;
}

.show-more {
    display: inline-block;
    margin: 8px 0;
    padding: 8px 8px;
    font-size: 14px;
    color: #205594;
    background: none;
    border: 1px solid #000000;
    border-radius: 4px;
    cursor: pointer;
}

.show-more:hover {
    background-color: #0066cc;
    color: #fff;
}

.hidden-content {
    display: none;
    margin-top: 10px;
    background-color: #e8f4ff;
    padding: 10px;
    border-radius: 6px;
}

.hidden-content p {
    margin: 0;
    color: #030303;
    font-size: 14px;
}

.hidden-content .hide-btn {
    margin-top: 10px;
    padding: 8px 15px;
    font-size: 14px;
    color: #fff;
    background-color: #dc3545;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


.details span {
display: block;
margin: 5px 0;
font-size: 14px;
color: #666;
}

.registered {
margin: 10px 0;
font-size: 14px;
font-weight: bold;
color: #000000;
}

.register-btn {
display: inline-block;
padding: 8px 8px;
font-size: 12px;
color: #fff;
background-color: #205594;
border: none;
border-radius: 4px;
cursor: pointer;

}
.click-btn {
display: inline-block;
padding: 25px 30px;
font-size: 14px;
color: #fff;
background-color: #0056b3;
border: none;
border-radius: 2px;
cursor: pointer;
border-style: solid;

}
.click-btn:hover {
    background-color: #ffffff;
    color: #000000;
}


.register-btn:hover {
background-color: #0056b3;
color: #f4f4f4;
}
/* Custom styles for modal */
.modal-dialog {
margin: auto;
top: 5%; /* Adjust the percentage to move it lower on the screen */
}

.modal-content {
border-radius: 20px; /* Rounded edges */
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
animation: scaleUp 0.4s ease-in-out; /* Smooth pop-up effect */
}

/* Smooth scaling animation */
@keyframes scaleUp {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

/* Styling for modal header */
.modal-header {
background-color: #1980ee;
color: white;
border-top-left-radius: 20px; /* Match rounded corners */
border-top-right-radius: 20px;
}

/* Button hover effect */
.btn-primary:hover {
background-color: #1d73cf;
}
.required {
color: red;
font-weight: bold;
}