/* Container for the form */
.pet-hotel-filter-form {
    background-color: #fbc200;
    padding: 5px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Dropdown menus */
.pet-hotel-filter-form select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    /* border-radius: 5px; */
    margin-right: 10px;
    background: white;
}

/* Search button */
.pet-hotel-filter-form button {
    background-color: #ff914d;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    margin-left: 15px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    min-width: 120px; 
}

.pet-hotel-filter-form button:hover{
    background-color: #f4630a;
}

.title-head{
    width: 70%;
    color: white;
    font-weight: 600;
    background-color: #fbc200;
    padding: 5px 20px;
    font-size: 19px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
/* Pet hotel listing */
.pet-hotel-listing {  margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style-type: none; padding: 0; margin-top: 20px; }

.pet-hotel-item {
    margin: 0;
    display: block;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.pet-hotel-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pet-hotel-details {
    padding: 20px;
    flex-grow: 1;
}

.pet-hotel-details h3 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

.pet-hotel-details p {
    margin: 10px 0;
    color: #666;
}

.pet-hotel-call {
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: space-between;
}
.pet-hotel-call a,.pet-hotel-call button {
    color: #000000bf  !important;
}

.pet-hotel-call a:hover,.pet-hotel-call .load-more-button:hover {
    color: gray !important;
}
 
.call-button {
    background-color: #ccc;
    color: black;
    padding: 10px 30px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

/* CSS cho nút Load More */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.load-more-button {
    background-color: #ff914d;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    margin:  auto;
    }

.load-more-button:hover {
    background-color: #d15c14;
}

.load-more-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.load-more-button .spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 0.6s linear infinite;
}

.load-more-button.loading .spinner {
    display: inline-block;
}

.notification {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

/* Hiệu ứng xoay */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


@media only screen and (max-width: 600px) {
    .pet-hotel-listing {  grid-template-columns: repeat(1, 1fr); }
    .title-head{
        width: 100%;
    }
    .pet-hotel-filter-form {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border-top-right-radius: 0;
        display: block;
    }
    .pet-hotel-filter-form select, .pet-hotel-filter-form button{
        margin-bottom: 15px;
    }


  }