* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    height: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    flex-shrink: 0;
    padding-top: 110px;
}


/* Top Bar Styles */
.topbar {
    background: #2c2c2c;
    padding: 8px 0;
    font-size: 14px;
    color: #ccc;
    position: fixed; /* Tambahkan ini */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001; /* Lebih tinggi dari main-header */
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info i {
    color: #f1c40f;
    margin-right: 5px;
}

.contact-info a {
    color: #ccc;
    text-decoration: none;
}

.contact-info a:hover {
    color: #f1c40f;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #ccc;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f1c40f;
}

/* Main Header Styles */
.main-header {
    background: #1a1a1a;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 40px; /* Tinggi topbar */
    left: 0;
    width: 100%;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Default: logo disembunyikan (mobile) */
.main-header .logo {
    display: none !important;
}

/* Tampilkan logo hanya di desktop */
@media (min-width: 992px) {
    .main-header .logo {
        display: flex !important;
    }
}

.logo {
    color: #f1c40f;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 32px;
    width: auto;
    margin-right: 8px;
}

.logo:hover {
    color: #f1c40f;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    align-items: center;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 15px 20px;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: #f1c40f;
    border-bottom-color: #f1c40f;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown>a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 3px solid #f1c40f;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #2c2c2c;
    border-left-color: #f1c40f;
    color: #f1c40f;
}

/* Hero Section */
.hero {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="300" viewBox="0 0 1200 300"><rect fill="%23333" width="1200" height="300"/><rect x="400" y="100" width="400" height="100" fill="%23555" rx="8"/><circle cx="600" cy="150" r="30" fill="%23f1c40f"/><text x="600" y="280" font-family="Arial" font-size="18" text-anchor="middle" fill="%23fff">RIGOL Technology</text></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Banner Section */
.banner {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('../user_page/banner-blog.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}


.banner-overlay {
    background-color: #3e3e3eb2;
    margin-top: 26%;
    width: 100%;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-overlay h1 {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    color: #f1c40f;
    font-weight: 500;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    flex: 1 0 auto;
    max-width: 1600px; 
    margin-left: auto;
    margin-right: auto;
    padding-left: 10%;
    padding-right: 10%;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* Container Layouts */
.container1,
.container2 {
    display: flex;
    width: 100%;
    min-height: 300px;
    gap: 20px;
    margin-bottom: 40px;
}

.container1 .left,
.container2 .right {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.container1 .right,
.container2 .left {
    flex: 1.25;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container1 .right img,
.container2 .left img {
    width: 90%;
    max-width: 100%;
    height: auto;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
}

/* Info Box */
.info-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    padding: 0 10%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}


.info-box {
    background: linear-gradient(90deg, #edc929e6, #f8aa00d7);
    padding: 20px 25px;
    border-radius: 16px;
    color: #333;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: bold;
}

.info-box ul {
    margin: 0 0 15px 20px;
    padding: 0;
}

.info-box ul li {
    margin-bottom: 5px;
}

.info-box p {
    margin: 0 0 10px 0;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.product-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.product-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f1c40f;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* Gallery Section */
.gallery {
    padding: 50px 0;
    background: #fff;
}

.gallery img.img-fluid {
    display: block;
    margin: 0 auto 40px auto;
    max-width: 1200px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.gallery h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.gallery h6 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
}

.gallery h4 {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #333;
}

/* Product Slider for Promo */
.product-slider-promo {
    margin-top: 20px;
    padding-bottom: 50px;
    padding-top: 20px;
}

.product-slider-promo .swiper-slide {
    height: auto;
}

.promo-card {
    background: #fff;
    border: 3px solid #f1c40f;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.promo-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #f8f9fa;
}

.promo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.promo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    z-index: 10;
}

.promo-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: #f1c40f;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.promo-btn:hover {
    background: #f39c12;
    transform: scale(1.1);
}

.promo-btn i {
    font-size: 16px;
}

/* Testimonials */
.testimonials {
    padding: 60px 20px;
    background: #fff;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-item h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonial-item p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Swiper Navigation & Pagination */
.swiper-button-next,
.swiper-button-prev {
    color: #f1c40f;
    background: rgba(26, 26, 26, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: #f1c40f;
    width: 10px;
    height: 10px;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #f1c40f;
    opacity: 1;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 9999;
}

#backToTop:hover {
    background-color: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#backToTop:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

.arrow-icon {
    width: 12px;
    height: 12px;
    border-left: 3px solid #2c2c2c;
    border-top: 3px solid #2c2c2c;
    transform: rotate(45deg); 
    margin-bottom: -2px; 
}

.arrow-svg {
    width: 24px;
    height: 24px;
    fill: #000;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: auto;
    flex-shrink: 0;
    width: 100%; 
}
.footer p {
    margin: 0;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-content {
        margin-left: 5%;
        margin-right: 5%;
    }

    .container1,
    .container2 {
        flex-direction: column;
        min-height: auto;
    }

    .container2 {
        flex-direction: column-reverse;
    }

    .container1 .left,
    .container1 .right,
    .container2 .left,
    .container2 .right {
        flex: 1;
        width: 100%;
    }

    .container1 .right img,
    .container2 .left img {
        width: 80%;
        max-width: 400px;
    }

    .title {
        font-size: 1.75rem;
    }

    .desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .banner-overlay {
        margin-top: 55%;
    }

    .main-header .container {
        flex-direction: column;
        gap: 15px;
        top: 0;
    }
    
    body {
        padding-top: 60px; /* Hanya tinggi main-header */
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links>li>a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #2c2c2c;
        margin-top: 10px;
        border-radius: 4px;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .banner {
        height: 300px;
    }

    .main-content {
        padding: 30px 20px;
        margin-left: 3%;
        margin-right: 3%;
        width: 90%;
    }

    .container1,
    .container2 {
        margin-bottom: 30px;
    }

    .container1 .left,
    .container1 .right,
    .container2 .left,
    .container2 .right {
        padding: 5px;
    }

    .title {
        font-size: 1.5rem;
        text-align: center;
    }

    .desc {
        font-size: 0.9rem;
        text-align: justify;
    }

    .info-box {
        padding: 15px 20px;
    }

    .info-box h3 {
        font-size: 18px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .product-slider-promo {
        padding-bottom: 45px;
    }

    .gallery {
        padding: 30px 25px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }

    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .topbar {
        display: none;
    }

.topbar {
        display: none;
    }
    
    .main-header {
        top: 0;
    }
    
    body {
        padding-top: 55px;
    }
    .hero {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .banner {
        height: 250px;
    }

    .banner-overlay {
        height: 2.5rem;
    }

    .banner-overlay h1 {
        font-size: 0.9rem;
    }

    .main-content {
        padding: 20px 0;
        margin-left: 5%;
        margin-right: 5%;
    }

    .container1 .right img,
    .container2 .left img {
        width: 100%;
    }

    .title {
        font-size: 1.25rem;
    }

    .desc {
        font-size: 0.85rem;
    }

    .info-wrapper {
        padding: 0 25px;
        margin: 30px 0;
    }

    .info-box {
        padding: 15px;
    }

    .info-box h3 {
        font-size: 16px;
    }

    .info-box ul {
        font-size: 14px;
    }

    .info-box p {
        font-size: 14px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nav-links>li>a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .dropdown-menu {
        min-width: 180px;
    }

    .product-slider-promo {
        padding-bottom: 40px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }

    .promo-badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .promo-btn {
        width: 32px;
        height: 32px;
    }

    .promo-btn i {
        font-size: 14px;
    }

    .gallery h2 {
        font-size: 24px;
    }

    .gallery h6 {
        font-size: 16px;
        text-align: justify;
    }

    .gallery h4 {
        font-size: 20px;
    }

    #backToTop {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .arrow-icon {
        width: 12px;
        height: 12px;
        border-left: 3px solid #2c2c2c;
        border-top: 3px solid #2c2c2c;
        transform: rotate(45deg); 
        margin-bottom: -2px; 
    }
}

@media (max-width: 400px) {
    .title {
        font-size: 1.1rem;
    }

    .desc {
        font-size: 0.8rem;
    }

    .info-box h3 {
        font-size: 14px;
    }

    .info-box ul,
    .info-box p {
        font-size: 13px;
    }
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact .row {
    display: flex;
    align-items: stretch;
}

.contact .map-wrapper {
    margin-bottom: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact iframe {
    width: 100%;
    max-width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Info Cards */
.contact .info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact .info > div {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact .info > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.contact .info i {
    font-size: 24px;
    color: #f1c40f;
    float: left;
    width: 44px;
    height: 44px;
    background: #fff8e1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact .info:hover i {
    background: #f1c40f;
    color: #fff;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact .info .a-mailto-contact {
    color: #f1c40f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact .info .a-mailto-contact:hover {
    color: #f39c12;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .contact {
        padding: 40px 0;
    }

    .contact .row {
        flex-direction: column;
    }

    .contact .map-wrapper {
        margin-bottom: 30px;
    }

    .contact iframe {
        height: 350px;
    }

    .contact .info {
        gap: 15px;
    }

    .contact .info > div {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 30px 15px;
    }

    .contact iframe {
        height: 300px;
    }

    .contact .info {
        flex-direction: column;
        gap: 15px;
    }

    .contact .info > div {
        min-width: 100%;
        padding: 20px 15px;
    }

    .contact .info i {
        font-size: 20px;
        width: 40px;
        height: 40px;
    }

    .contact .info h4 {
        padding-left: 55px;
        font-size: 16px;
    }

    .contact .info p {
        padding-left: 55px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .contact iframe {
        height: 250px;
    }

    .contact .info {
        gap: 12px;
    }

    .contact .info > div {
        padding: 18px 15px;
    }

    .contact .info i {
        font-size: 18px;
        width: 36px;
        height: 36px;
    }

    .contact .info h4 {
        padding-left: 50px;
        font-size: 15px;
    }

    .contact .info p {
        padding-left: 50px;
        font-size: 12px;
    }
}


/* Floating Chat Button */
.floating-chat-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #FFD700;
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(34, 176, 105, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.floating-chat-button:hover {
  background: rgb(205, 185, 2);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(34, 176, 105, 0.4)
}

.floating-chat-button svg {
  width: 24px;
  height: 24px;
}


.chat-widget-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 2000;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.chat-widget-container.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}

.chat-widget-container .chat-container {
  margin: 0;
  padding: 0;
}

@media (max-width: 600px) {
  .chat-widget-container {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    z-index: 1000;
  }
}

.alert {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideDown 0.3s ease-out;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #26A375;
  border: 1px solid #f5c6cb;
}

.alert-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.alert-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-close:hover {
  opacity: 1;
}
