.main-section {
display: flex;
flex-wrap: nowrap;
/* margin-top: 30px; */
margin: auto;
flex-direction: row;
width: 100%;
justify-content: center;
}
.content {
position: relative;
justify-content: center;
display: block;
align-items: center;
top: 9px;

}

.sliderimg {
display: none;
width: 100%;
/* padding: 20px; */
border-radius: 10px;
box-shadow: var(--box-shadow);
margin: auto;
transition: transform 0.3s ease, box-shadow 0.3s ease;
-webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
-moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
-ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
-o-transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sliderimg:first-child {
display: block;
}

.sliders {
position: absolute;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
padding: 10px;
color: #fff;
}

.sliders.left {
left: 0;
}

.sliders.right {
right: 0;
}

.btm-slides {
text-align: center;
margin-top: 1px;
}

.btm-slides span {
cursor: pointer;
display: inline-block;
width: 25px;
height: 9px;
background: rgba(255, 255, 255, 0.5);
border-radius: 50px;
border: 1px solid #1481f9;
margin: 3px;
transition: background 0.3s;

}

.btm-slides span.active {
background: #1481f9;
}



@media (max-width: 768px) {

.main-section {
display: flex;
flex-direction: column;
width: auto;
margin-top: 30px;
}

.sliderimg {
width: 100%;
padding: 0px;

}

.sliders {
padding: 5px;
font-size: 14px;
}

.btm-slides span {
width: 15px;
height: 7px;
}
.content {
position: relative;
justify-content: center;
display: block;
align-items: center;
top: 0;
left: 0;
}

}

.notification-container {
max-height: 300px;
overflow-y: auto;
padding:30px;
}

.notification-container.scrollable {
overflow-y: hidden;
position: relative;
}

#notification-list {
list-style: none;
padding: 0;
margin: 0;
}

#notification-list li {
padding: 10px 0;
border-bottom: 1px solid #f0f0f0;
display: flex;
align-items: flex-start;
}

#notification-list li:last-child {
border-bottom: none;
}

.notification-item-wrapper {
transition: all 0.3s ease;
border-radius: 4px;
}

.notification-item-wrapper:hover {
background-color: #f5f5f5;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transform: translateY(-1px);
}

.notification-number {

color: rgb(0, 0, 0);
width: 24px;
height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: bold;
margin-right: 10px;
flex-shrink: 0;
}

.notification-content {
flex: 1;
}

.notification-item {
position: relative;
cursor: pointer;
}

.notification-item strong {
display: block;
color: #0f2239;
margin-bottom: 5px;
}

.notification-item p {
color: #636363;
font-size: 14px;
margin: 0;
}

.new-badge {
background: var(--new-badge-color);
color: white;
font-size: 10px;
padding: 2px 6px;
border-radius: 4px;
font-weight: bold;
text-transform: uppercase;
margin-left: 8px;
vertical-align: middle;
animation: pulse 1.5s infinite;
}

@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
}

70% {
box-shadow: 0 0 0 5px rgba(231, 76, 60, 0);
}

100% {
box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
}
}

.notification-meta {
font-size: 12px;
color: #888;
margin-top: 5px;
}

/* Scrollbar styling */
.notification-container::-webkit-scrollbar {
width: 6px;
}

.notification-container::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}

.notification-container::-webkit-scrollbar-thumb {
background: #0066B2;
border-radius: 10px;
}

.notification-container::-webkit-scrollbar-thumb:hover {
background: #005599;
}
.scrollable {
    overflow-y: hidden;
    position: relative;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.main-section {
flex-direction: column;
}

.col-md-4,
.col-md-6 {
width: 100%;
margin-bottom: 20px;
}
}