body p{color: #5A5A5A;}
.card-header h3{
	font-family: "Gilda Display", Sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #5A5A5A;
	margin-top: 0;
    line-height: normal;
	margin-bottom: 5px;
}
button{background-color: #6b7280;}
.online-rate-info, .tab-content p, .amenities-list li{color: #5A5A5A;font-size: 16px;margin-bottom: 0px;font-weight: 400;}
p.error{font-style: italic; color: #a60b1b;}
/* --- Search Form Styles --- */
.cloudbeds-search-form-wrapper {
    margin-bottom: 2rem;
}

.cloudbeds-search-form {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-field {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5A5A5A;
    margin-bottom: 0.5rem;
    display: block;
}

.form-field .input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.form-field .input-with-icon .svg-icon {
    position: absolute;
    left: 12px;
    color: #666;
    z-index: 1;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-field .input-with-icon .svg-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
}

.form-field input[type="text"],
.form-field input[type="number"] {
    width: 100%;
    height: 48px;
    padding: 12px 12px 12px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    color: #5A5A5A;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-field input[type="number"] {
    padding-left: 12px;
}

.form-field input[type="text"]:focus,
.form-field input[type="number"]:focus {
    outline: none;
    border-color: #92a299;
    box-shadow: 0 0 0 3px rgba(26, 58, 58, 0.1);
}

.search-button {
    height: 48px;
    background-color: #92a299;
    color: #fff;
    border: none;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    white-space: nowrap;
    min-width: 120px;
}

.search-button:hover {
    background-color: #2c5d5d;
    transform: translateY(-2px);
}

.search-button.is-loading {
    position: relative;
    padding-left: 2.5rem; /* room for spinner */
}
.search-button.is-loading:before {
    content: "";
    position: absolute;
    left: 0.9rem;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    border-top-color: #fff;
    animation: lp-spin 0.7s linear infinite;
}
@keyframes lp-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.search-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Responsive adjustments for search form */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-field {
        min-width: unset;
    }
    
    .search-button {
        width: 100%;
        margin-top: 1rem;
    }
	.contact-form .form-row-2, .payment-form .form-row-2, .payment-form .form-row-3{
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}
	.payment-form .field-radio{flex-direction: column;align-items: flex-start;}
	.payment-form .secure-text{font-size: 14px;padding-left: 25px;}
	.payment-form .secure-text img{display: none !important;}
	.payment-form .learn-more-link{font-size: 12px;color: #0000EE}
	#agree-terms{float: left;margin-right: 10px;}
}

@media (max-width: 480px) {
    .cloudbeds-search-form {
        padding: 1rem;
    }
    
    .form-row {
        gap: 0.75rem;
    }
}

/* --- Checkout Steps --- */
.checkout-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.step {
    display: flex;
    align-items: center;
    margin: 0 2rem;
    color: #999;
    font-weight: 500;
}

.step.active {
    color: #92a299;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.step.active .step-number {
    background-color: #92a299;
    color: white;
}

.step-title {
    font-size: 1rem;
}

/* --- Checkout Container --- */
.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* --- Rooms Column --- */
.rooms-column {
    min-height: 400px;
}

/* --- Booking Summary Column --- */
.booking-summary-column {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.booking-summary {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
}

.summary-header h3 {
    margin: 0 0 1.5rem 0;
    color: #92a299;
    font-size: 1.25rem;
    font-weight: 600;
}

/* --- Selected Rooms List --- */
.selected-rooms {
    margin-bottom: 1.5rem;
}

.no-selection {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 1rem 0;
}

.selected-room-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.selected-room-item:last-child {
    border-bottom: none;
}

.room-info {
    flex: 1;
}

.room-name {
    font-weight: 600;
    color: #5A5A5A;
    margin-bottom: 0.25rem;
}

.room-price {
    color: #666;
    font-size: 0.9rem;
}

.remove-room-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    margin-left: 0.5rem;
}

.remove-room-btn:hover {
    color: #c82333;
}

/* --- Total Section --- */
.total-section {
    border-top: 2px solid #e0e0e0;
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.total-label {
    color: #5A5A5A;
}

.total-amount {
    color: #92a299;
    font-size: 1.25rem;
}

/* --- Booking Actions --- */
.booking-actions {
    margin-bottom: 1.5rem;
}

.book-now-btn {
    width: 100%;
    height: 48px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.book-now-btn:not(:disabled) {
    background-color: #92a299;
}

.book-now-btn:not(:disabled):hover {
    background-color: #2c5d5d;
    transform: translateY(-2px);
}

.book-now-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* --- Promo Section --- */
.promo-section {
    margin-bottom: 1.5rem;
}

.promo-link {
    color: #666;
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
}

.promo-link:hover {
    color: #5A5A5A;
}

.promo-input-group {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.promo-code-input {
    flex: 1;
    height: 40px;
    padding: 0 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
}

.promo-code-input:focus {
    outline: none;
    border-color: #92a299;
}

.apply-code-btn {
    height: 40px;
    padding: 0 1rem;
    background-color: #f8f9fa;
    color: #5A5A5A;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-code-btn:hover {
    background-color: #e9ecef;
}

/* --- Secure Payment --- */
.secure-payment {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.security-icon {
    font-size: 1rem;
}

.security-text {
    flex: 1;
}

.learn-more-link {
    color: #92a299;
    text-decoration: underline;
}

.learn-more-link:hover {
    color: #2c5d5d;
}

/* ========================= */
/* Step 2 - Checkout Styles  */
/* ========================= */
.checkout-step2 {
    width: 100%;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}
.checkout-left, .checkout-right { width: 100%; }

.card-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}
.section-title {
    font-weight: 600;
    color: #395171;
    margin-bottom: 1rem;
}

.contact-form .form-row-2,
.payment-form .form-row-2,
.payment-form .form-row-3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.payment-form .form-row-3 { grid-template-columns: 2fr 1fr 1fr; }

.field label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.35rem;
}
.field input, .field select {
    width: 100%;
    height: 44px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 0.95rem;
}
.field input:focus, .field select:focus {
    outline: none;
    border-color: #92a299;
    box-shadow: 0 0 0 3px rgba(146,162,153,0.15);
}
.req { color: #d9534f; }

.field-radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.secure-text { color: #6b7280; font-size: 0.9rem; }

.terms-row { margin: 1rem 0; }
.complete-reservation-btn {
    width: 50%;
    height: 48px;
    background: #92a299;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}
.complete-reservation-btn:disabled {
    background: #c0c7c3;
    cursor: not-allowed;
}
.checkout-cta{ display:flex; justify-content:space-between; align-items:center; margin-top: 1rem; }
.checkout-topbar { display:flex; justify-content:flex-start; margin-bottom: 0.75rem; }
.back-step-btn {
    color: #395171;
    padding: 0 12px;
    font-weight: 600;
    cursor: pointer;
    border: 0 !important;
    font-weight: 400;
    background: none !important;
}

.back-step-btn:hover { text-decoration: underline; background: none !important; color: #395171 !important; font-weight: 500 !important; }

.summary-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    padding: 1.25rem;
}
.summary-title { font-weight: 700; color: #395171; margin-bottom: 1rem; }
.summary-block { border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 0.75rem 0; }
.summary-line { display: flex; justify-content: space-between; padding: 0.35rem 0; }
.summary-rooms { padding: 0.75rem 0; }
.summary-room-item { display: flex; justify-content: space-between; padding: 0.35rem 0; }
.summary-room-name { color: #5A5A5A; }
.summary-room-price { color: #6b7280; }
.summary-total { border-top: 1px solid #eee; padding-top: 0.75rem; }

/* Payment methods & promos fetched from Cloudbeds */
.payment-methods-group { display: grid; gap: 0.5rem; margin: 0.5rem 0 1rem; }
.pm-item { display: flex; align-items: center; gap: 0.5rem; color: #5A5A5A; }
.promo-hints { border-top: 1px dashed #e5e7eb; margin-top: 0.75rem; padding-top: 0.75rem; }
.promo-title { font-weight: 600; color: #395171; margin-bottom: 0.35rem; }
.promo-line { display: flex; justify-content: space-between; color: #6b7280; font-size: 0.9rem; }
.promo-code { background: #eef2f0; color: #395171; padding: 2px 8px; border-radius: 4px; }

@media (max-width: 1024px) {
    .checkout-grid { grid-template-columns: 1fr; }
}
/* --- Room Card Container --- */
.room-card-wrapper {
    margin-bottom: 20px; /* Space between cards */
}

.room-card {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 900px; /* Adjust as needed */
    margin: 0 auto; /* Center the card */
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    transition: all 0.3s ease-in-out;
}

.room-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* --- Left Side: Image --- */
.card-image {
    width: 35%;
    min-width: 300px; /* Ensures image is not too small on narrow screens */
    position: relative;
    overflow: hidden; /* For zoom effect on image */
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.card-image a:hover img {
    transform: scale(1.05);
}

.image-container .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    font-size: 24px;
    pointer-events: none; /* Allow clicks to pass through to the image */
}

.image-container:hover .zoom-icon {
    opacity: 1;
}

/* --- Right Side: Details --- */
.card-details {
    width: 60%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Details: Header Section --- */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.card-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0;
    color: #92a299;
}
.rooms-left-tag {
    background-color: #fdf5d9;
    color: #7b6a2a;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
    margin-left: 1rem;
}

/* --- Details: Info Bar with Icons --- */
.info-bar {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.info-bar span {
    display: flex;
    align-items: center;
}
.info-bar .fas {
    margin-right: 0.5rem;
    color: #92a299;
    width: 20px;
    text-align: center;
}

/* --- Details: Booking & Price Section --- */
.booking-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Pushes booking action to bottom */
}
.price-display .price {
    font-size: 1.2rem;
    font-weight: bold;
}
.price-display .price-per-night {
    font-size: 0.9rem;
    color: #777;
}
.select-room-btn {
    background-color: #92a299;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}
.select-room-btn[disabled], .select-room-btn:disabled {
    background-color: #c0c7c3;
    cursor: not-allowed;
    opacity: .8;
}
.select-room-btn:hover {
    background-color: #2c5d5d;
    transform: translateY(-2px);
}

/* --- Collapsible Details Section --- */
.details-toggle {
    font-size: 0.9rem;
    color: #395171;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s;
}
.details-toggle:hover {
    color: #5A5A5A;
}
.details-toggle .fas {
    margin-left: 5px;
    transition: transform 0.3s;
}
.details-toggle.active .fa-chevron-down {
    transform: rotate(180deg);
}
.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease-in-out;
    width: 100%;
}
.collapsible-content.active {
    max-height: 1000px; /* Large enough to cover content, adjust if needed */
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

/* --- Tabs within Collapsible Section --- */
.tabs-container {
    background-color: #f8f8f8;
    border-radius: 5px;
    padding: 1rem;
}
.amenities-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
}
.amenities-list li {
    position: relative;
    padding-left: 24px;
    line-height: 1.4;
}
.amenities-list li:before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #92a299;
}
@media (max-width: 768px) {
    .amenities-list {
        grid-template-columns: 1fr;
    }
}
.tabs-nav {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    display: flex;
    list-style: none;
    padding: 0;
}
.tabs-nav a {
    display: inline-block;
    padding: 0.5rem 0;
    margin-right: 1.5rem;
    text-decoration: none;
    color: #6b7280;
    font-weight: 400;
	font-size: 16px;
    border-bottom: 3px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}
.tabs-nav a.active, .tabs-nav a:hover {
    color: #395171;
    border-bottom-color: #395171;
}
.tab-content {
    display: none;
    font-size: 0.9rem;
    line-height: 1.6;
    animation: fadeIn 0.3s ease-in-out;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Lightbox Styles --- */
#room-image-lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    margin: 0 !important;
    padding: 0 !important;
}

#room-image-lightbox.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.lightbox-content {
    position: relative;
    width: 800px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px !important;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #92a299;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev, .lightbox-next {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    pointer-events: auto;
    border-radius: 4px;
}

.lightbox-prev {
    margin-left: -60px;
}

.lightbox-next {
    margin-right: -60px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(146, 162, 153, 0.8);
    color: #fff;
}

.lightbox-thumbnails {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    max-width: 100%;
    width:100%;
    padding: 10px 0;
    justify-content: center;
}

.lightbox-thumb {
    width: 80px;
    height: 80px !important;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s, border-color 0.3s;
    border: 2px solid rgba(146, 162, 153) !important;
    border-radius: 10px !important;
    flex-shrink: 0;
}

.lightbox-thumb:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: #92a299;
    transform: scale(1.1);
}

/* Lightbox loading state */
.lightbox-image.loading {
    opacity: 0.5;
}

/* Lightbox error state */
.lightbox-error {
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
}

/* Prevent body scroll when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-summary-column {
        position: static;
        order: 2;
    }
    
    .booking-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-steps {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }
	.card-header h3{margin-top: 15px;margin-bottom: 5px;}
    .step {
        margin: 0;
    }
    
    .checkout-container {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .room-card {
        flex-direction: column;
    }
    .card-image, .card-details {
        width: 100%;
        min-width: unset;
    }
    .card-details {
        padding-top: 0.5rem;
    }
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .rooms-left-tag {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .info-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .booking-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .select-room-btn {
        width: 100%;
    }
    .collapsible-content {
        
    }
    .lightbox-nav {
        width: 100%;
        left: 0;
        right: 0;
        padding: 0 20px;
    }
    .lightbox-prev, .lightbox-next {
        font-size: 1.5rem;
        padding: 10px 15px;
        margin: 0;
    }
    .lightbox-close {
        font-size: 2rem;
        top: -40px;
        right: 0;
    }
    .lightbox-image {
        max-height: 60vh;
    }
    .lightbox-thumbnails {
        margin-top: 15px;
        gap: 8px;
    }
    .lightbox-thumb {
        width: 60px;
        height: 45px;
    }
    
    .booking-summary {
        padding: 1rem;
    }
    
    .promo-input-group {
        flex-direction: column;
    }
    
    .apply-code-btn {
        width: 100%;
    }
}
