/* Container Wrapper */
.woorent-wrapper {
    margin-top: 20px;
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* The Main Card */
.woorent-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08); /* Soft shadow like Airbnb */
    max-width: 450px; /* Keeps it neat on desktop */
}

/* Header Section */
.woorent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.woorent-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.woorent-rate .price {
    font-size: 22px;
    font-weight: bold;
    color: #222;
}

.woorent-rate .period {
    font-size: 14px;
    color: #717171;
}

/* Date Inputs Grid */
.woorent-dates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns side by side */
    gap: 10px;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #b0b0b0;
    border-radius: 8px;
    overflow: hidden;
}

.woorent-date-input {
    padding: 10px;
    position: relative;
}

.woorent-date-input:first-child {
    border-right: 1px solid #b0b0b0;
}

.woorent-date-input label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 2px;
}

.woorent-date-input input {
    width: 100%;
    border: none !important;
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #717171;
    outline: none;
}

/* Price Box */
.woorent-total-box {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.woorent-total-box.hidden {
    display: none;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #222;
    margin-bottom: 5px;
}

.final-price {
    font-weight: bold;
    font-size: 18px;
}

.sub-text {
    font-size: 13px;
    color: #717171;
}

/* Action Buttons */
.woorent-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.woorent-btn-book {
    width: 100%;
    background: #E11D48 !important; /* Airbnb-ish Red/Pink or keep your brand color */
    color: white !important;
    font-weight: bold;
    padding: 14px !important;
    border-radius: 8px !important;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.woorent-btn-book:hover {
    background: #be123c !important;
}

.woorent-btn-whatsapp {
    width: 100%;
    display: block;
    text-align: center;
    background: #fff;
    color: #25D366;
    border: 1px solid #25D366;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
    box-sizing: border-box; /* Fix padding issues */
}

.woorent-btn-whatsapp:hover {
    background: #f0fdf4;
}

.woorent-btn-whatsapp .dashicons {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}