html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    padding-top: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    font-size: 18px;
}

.container {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 15px;
    padding: 20px;
}

.container img {
    width: 95%;
    max-width: 100%;
}

.card {
    width: 97%;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 5px;
}

div img {
    display: block;
    width: 95%;
    margin: 0 auto;
    height: auto;
}

.border-custom-purple {
    border-color: #6D55F1;
}

.border-custom-purple2 {
    border-color: #9B518F;
}

.border-custom-red {
    border-color: #FD1940;
}

.border-custom-green {
    border-color: #0CAA17;
}

.border-custom-blue {
    border-color: #0086D4;
}

.border-custom-light-blue {
    border-color: #2ebdf2;
}

.border-custom-brown {
    border-color: #87440D;
}

.border-custom-orange {
    border-color: #ED3F00;
}

.card-header {
    font-size: 1.5rem;
}

/* .floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E0144C;
    border: 0px;
    transition: background-color 0.3s;
    z-index: 9999;
} */

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E0144C;
    border: 0px;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 9999;
    animation: pulse 1s infinite alternate;
}

.floating-btn:hover {
    background-color: #FF5858;
}

.floating-btn:active {
    background-color: #FF5858 !important;
}

.floating-btn svg {
    width: 93%;
    height: 93%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.warehouse-name {
    display: flex;
    justify-content: center;
    align-items: center;
}

#warehouseModal {
    z-index: 1500;
}

#HaiYunModal {
    z-index: 1500;
}

.iframe-container {
    width: 100%;
    max-width: 800px;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}

.iframe-container iframe {
    position: absolute;
    width: 100%;
    height: 300%;
    border: none;
}

#carouselExampleIndicators {
    width: 93% !important;
    margin: 0 auto;
}

h1 {
    color: #2c3e50;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 32px;
}

h2 {
    color: #34495e;
    font-weight: bold;
    margin: 25px 0 15px;
    font-size: 28px;
}

h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.highlight-text {
    color: #e74c3c;
    font-weight: bold;
}

.purple-text {
    color: #9b59b6;
    font-size: 18px;
    font-weight: bold;
}

.green-text {
    color: #27ae60;
    font-size: 18px;
    font-weight: bold;
}

.info-card {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.responsive-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}

.custom-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.custom-link:hover {
    color: #2980b9;
}

.custom-list {
    list-style-type: none;
    padding-left: 20px;
}

.custom-list li {
    margin-bottom: 8px;
}

.alert-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 12px;
    border-radius: 4px;
    margin: 10px 0;
}

.footer {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    color: #666;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    p {
        font-size: 18px;
    }
}


/* 區分手機/電腦圖片 */

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

@media (max-width: 767px) {
    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }
}