/* สไตล์หลักของ Breadcrumbs */
        .breadcrumbs {
            display: flex;
            align-items: center;
            font-size: 14px;
            padding: 10px 15px;
            background-color: #f8f9fa;
            /* สีพื้นหลัง */
            border-radius: 5px;
            /* มุมโค้งมน */
        }

        /* สไตล์ของแต่ละลิงก์ */
        .breadcrumbs a {
            font-size: 0.9rem;
            text-decoration: none;
            color: rgb(87, 87, 87);
            /* สีของลิงก์ */
            transition: color 0.3s ease-in-out;
        }

        .breadcrumbs a:hover {
            color: #0056b3;
            /* เปลี่ยนสีเมื่อ hover */
        }

        /* ตัวแบ่ง "/" ระหว่าง Breadcrumbs */
        .breadcrumbs span {
            margin: 0 8px;
            color: #6c757d;
        }

        .breadcrumbs p {
            margin: 0 8px;
            color: #6c757d;
        }

        /* สไตล์สำหรับหน้าเพจปัจจุบัน */
        .breadcrumbs .current {
            color: #5089df;
            font-weight: bold;
        }

        .product-card {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }


        .product-details {
            padding: 1.5rem;
        }

        .product-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-category {
            display: inline-block;
            background-color: #5089df;
            color: white;
            font-size: 0.775rem;
            border-radius: 9999px;
            padding: 0.25rem 0.75rem;
            margin-bottom: 0.5rem;
        }

        .product-subinfo {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 0.5rem;
        }

        .product-info {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 0.7rem;
        }

        .product-info strong {
            color: #2d3748;
        }

        .btn-cartin {
            font-size: 1rem;
            background-color: #5089df;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-cartin:hover {
            text-decoration: none;
            background-color: rgb(29, 116, 209);
            color: white;
            transform: scale(1.05);
        }

        .btn-disabled {
            font-size: 1rem;
            background-color: rgb(216, 216, 216);
            cursor: not-allowed;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            border: none;
        }
        .room-container {
            display: flex;
            flex-wrap: wrap;
            margin: auto;
        }
        .room {
            cursor: pointer;
            padding: 10px;
            text-align: center;
            font-size: 12px;
            color: white;
            border-radius: 10px;
            margin-bottom: 10px;
            margin-left: 5px;
            margin-right: 5px;
        }

        .status-box {
            width: 20px;
            height: 12px;
            border-radius: 4px;
            display: inline-block;
        }

        .available {
            background-color: #5089df;
        }

        .text-available {
            font-size: small;
            color: #5089df;
        }

        .full {
            background-color: rgb(219, 69, 58);
        }

        .text-full {
            font-size: small;
            color: #db453a;
        }

        .maintenance {
            background-color: rgb(253, 184, 55);
        }

        .text-maintenance {
            font-size: small;
            color: #fdb837;
        }

        .other {
            background-color: rgb(190, 190, 190);
        }

        .text-other {
            font-size: small;
            color: #bebebe;
        }


        /* Responsive styles */
        @media (max-width: 768px) {
            .product-image {
                height: 300px;
            }

            .product-title {
                font-size: 1.5rem;
            }

            .product-category {
                font-size: 0.75rem;
            }

            .product-info {
                font-size: 0.875rem;
            }
        }

        @media (max-width: 576px) {
            .breadcrumbs span {
                overflow: hidden;
                font-size: 0.5rem;
            }

            .breadcrumbs p {
                font-size: 0.5rem;
                margin: 0 4px;
                color: #6c757d;
            }

            .breadcrumbs a {
                overflow: visible;
                font-size: 0.5rem;
            }

            .product-image {
                height: 260px;
            }

            .product-title {
                font-size: 1rem;
            }

            .product-category {
                font-size: 0.625rem;
            }

            .product-info {
                font-size: 0.75rem;
            }

            .btn-cartin {
                font-size: 0.8rem;
                background-color: #5089df;
                color: white;
                padding: 0.5rem 1rem;
                border-radius: 0.5rem;
                transition: all 0.3s ease;
                border: none;
            }

            .btn-disabled {
                font-size: 0.8rem;
                background-color: rgb(216, 216, 216);
                cursor: not-allowed;
                color: white;
                padding: 0.5rem 1rem;
                border-radius: 0.5rem;
                border: none;
            }
        }