/* Stylesheet for WP Car Rental & Fleet Manager */
.wpcr-booking-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 20px 0;
}
.wpcr-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.wpcr-title {
    font-size: var(--wpcr-title-font-size, 24px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}
.wpcr-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 640px) {
    .wpcr-grid-2 {
        grid-template-columns: 1fr;
    }
}
.wpcr-field {
    display: flex;
    flex-direction: column;
}
.wpcr-field label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #475569;
}
.wpcr-field input, .wpcr-field select {
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
}
.wpcr-btn-primary {
    background-color: var(--wpcr-button-color, #722283);
    color: var(--wpcr-button-text-color, #ffffff);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.wpcr-btn-primary:hover {
    background-color: var(--wpcr-button-hover-color, #581a66);
    color: var(--wpcr-button-hover-text-color, #ffffff);
    filter: brightness(0.95);
}

/* Fleet Grid */
.wpcr-fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.wpcr-vehicle-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
}
.wpcr-vehicle-card:hover {
    transform: translateY(-4px);
}
.wpcr-car-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.wpcr-car-body {
    padding: 16px;
}
.wpcr-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--wpcr-primary, #722283);
    text-transform: uppercase;
}
.wpcr-specs {
    display: flex;
    gap: 12px;
    font-size: 0.825rem;
    color: #64748b;
    margin: 10px 0;
}
.wpcr-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
}
.wpcr-price {
    font-size: var(--wpcr-price-font-size, 22px);
    color: var(--wpcr-price-color, #16a34a);
    font-weight: 700;
}
.wpcr-btn-small {
    background: var(--wpcr-button-color, #722283);
    color: var(--wpcr-button-text-color, #ffffff);
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.wpcr-btn-small:hover {
    background: var(--wpcr-button-hover-color, #581a66);
    color: var(--wpcr-button-hover-text-color, #ffffff);
}
