.mice-section {
    background: transparent;
    padding: 20px 0px;
    text-align: center;
}

.mice-section h2 {
    color: #fff;
    margin-bottom: 40px;
}

.mice-card {
    background: #000;
    border: 1px solid #f7f7f7ab;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
	min-height:260px !important;
    display: flex;
    flex-direction: column;
}

.mice-card:hover {
    transform: translateY(-6px);
    border-color: #ff2b2b;
}

.mice-icon {
    line-height: 1;
    margin-bottom: 15px;
    color: #fff;
}

.mice-card-title {
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.mice-card-desc {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.5;
}

.mice-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #ff2b2b;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.2s;
    margin-top: auto;
    align-self: center;
}

.mice-btn:hover {
    background: #e60000;
    color: #fff;
}

.mice-admin-actions {
    margin-top: 15px;
    font-size: 12px;
}

.mice-admin-actions a {
    margin: 0 6px;
    color: #aaa;
    text-decoration: underline;
}

.mice-admin-actions .delete-link {
    color: #ff6666;
}

/* Swiper container */
.miceSwiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px; /* space for pagination dots */
    position: relative;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    height: auto;
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #ff2b2b !important;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,43,43,0.8);
    color: #fff !important;
	width:38px;
	height:38px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* Pagination dots */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #ff2b2b !important;
    opacity: 1;
}
.swiper-button-next:after, .swiper-button-prev:after {
/* 	background: #fff !important; */
/*     padding: 10px !important;  */
    font-size: 14px !important;
}
/* Responsive */
@media (max-width: 768px) {
    .mice-section {
        padding: 40px 15px;
    }
    .mice-card {
        padding: 20px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
}