/**
 * Frontend styles for Rental System
 */

.rental-system-frontend {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

/* Page Notifications */
.rental-page-notification {
    position: relative;
    padding: 15px 50px 15px 50px;
    margin: 20px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rental-notification-success {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.rental-notification-error {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

.rental-notification-icon {
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.rental-notification-success .rental-notification-icon {
    background: #28a745;
    color: white;
}

.rental-notification-error .rental-notification-icon {
    background: #dc3545;
    color: white;
}

.rental-notification-message {
    flex: 1;
    font-weight: 500;
}

.rental-notification-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: inherit;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.rental-notification-close:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .rental-page-notification {
        padding: 12px 45px 12px 15px;
        font-size: 14px;
    }

    .rental-notification-icon {
        width: 24px;
        height: 24px;
        font-size: 18px;
    }
}

/* Filters */
.rental-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.rental-filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rental-filter-group label {
    font-weight: 600;
    color: #333;
}

.rental-filter-group select,
.rental-filter-group input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Items Grid */
.rental-items-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.rental-items-grid[data-columns="2"] {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.rental-items-grid[data-columns="4"] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Item Cards */
.rental-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.rental-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.rental-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.rental-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rental-item-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 48px;
}

.rental-availability {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.rental-availability.available {
    background: #d4edda;
    color: #155724;
}

.rental-availability.unavailable {
    background: #f8d7da;
    color: #721c24;
}

.rental-item-content {
    padding: 20px;
}

.rental-item-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.rental-item-category {
    display: inline-block;
    padding: 2px 8px;
    background: #0073aa;
    color: white;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 10px;
}

.rental-item-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.rental-item-quantity {
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

.rental-book-btn {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.rental-book-btn:hover:not(:disabled) {
    background: #005a87;
}

.rental-book-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.rental-no-items {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* Modal Styles */
.rental-modal {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.5);
}

.rental-modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.rental-modal-header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rental-modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.rental-modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.rental-modal-close:hover {
    color: #333;
}

.rental-modal-body {
    padding: 20px;
}

.rental-modal-footer {
    padding: 20px;
    border-top: 1px solid #ddd;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Form Styles */
.rental-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.rental-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rental-form-group.full-width {
    flex: 1 1 100%;
}

.rental-form-group label {
    font-weight: 600;
    color: #333;
}

.rental-form-group input,
.rental-form-group textarea,
.rental-form-group select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.required {
    color: #d63638;
}

.availability-info {
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
    min-height: 20px;
}

.availability-info.available {
    background: #d4edda;
    color: #155724;
}

.availability-info.unavailable {
    background: #f8d7da;
    color: #721c24;
}

.availability-info.partial {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.adjust-quantity-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.2s;
}

.adjust-quantity-btn:hover {
    background: #005a87;
}

/* Buttons */
.button-primary, .button-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.button-primary {
    background: #0073aa;
    color: white;
}

.button-primary:hover {
    background: #005a87;
}

.button-secondary {
    background: #f0f0f0;
    color: #333;
}

.button-secondary:hover {
    background: #e0e0e0;
}

/* Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.spinner.is-active {
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages */
#booking-messages {
    margin-top: 15px;
}

.notice {
    padding: 10px 15px;
    margin: 10px 0;
    border-left: 4px solid #ddd;
    background: #f9f9f9;
}

.notice-success {
    border-left-color: #46b450;
    background: #f7fcf7;
    color: #155724;
}

.notice-error {
    border-left-color: #dc3232;
    background: #fcf2f2;
    color: #721c24;
}

/* Price Display */
.rental-item-price {
    font-size: 18px;
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 10px;
}

.rental-price-period {
    font-size: 12px;
    color: #666;
    font-weight: normal;
}

/* Booking Summary */
.booking-summary {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
}

.booking-summary h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}

.summary-total {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rental-filters {
        flex-direction: column;
        gap: 15px;
    }
    
    .rental-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .rental-items-grid {
        grid-template-columns: 1fr;
    }
    
    .rental-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .rental-modal-header {
        padding: 15px;
    }
    
    .rental-modal-body {
        padding: 15px;
    }
    
    .rental-modal-footer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .rental-system-frontend {
        padding: 0 10px;
    }
    
    .rental-item-content {
        padding: 15px;
    }
    
    .rental-modal-content {
        width: 98%;
        margin: 2% auto;
    }
}

/* Lightbox Styles */
.rental-lightbox {
    position: fixed;
    z-index: 1000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rental-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 90vw;
    height: 90vh;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    animation: lightboxFadeIn 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.rental-lightbox-header {
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
    height: 60px;
    box-sizing: border-box;
}

.rental-lightbox-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.rental-lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #666;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.2s;
}

.rental-lightbox-close:hover {
    color: #333;
}

.rental-lightbox-body {
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    flex: 1;
}

.rental-lightbox-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    background: #000;
    position: relative;
    overflow: hidden;
    min-height: 0;
    max-height: calc(90vh - 175px);
}

.rental-lightbox-image-container img {
    max-width: calc(100% - 120px);
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.rental-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 30px;
    font-weight: bold;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    user-select: none;
    z-index: 1001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rental-lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.rental-lightbox-prev {
    left: 15px;
}

.rental-lightbox-next {
    right: 15px;
}

.rental-lightbox-thumbnails {
    display: flex;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    border-top: 1px solid #ddd;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
    height: 80px;
    max-height: 80px;
    overflow-x: auto;
    overflow-y: hidden;
}

.rental-lightbox-thumb {
    width: 50px;
    height: 50px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}

.rental-lightbox-thumb:hover,
.rental-lightbox-thumb.active {
    border-color: #0073aa;
}

.rental-lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rental-lightbox-counter {
    text-align: center;
    padding: 8px;
    background: #f8f9fa;
    color: #666;
    font-size: 14px;
    flex-shrink: 0;
    border-top: 1px solid #ddd;
    height: 35px;
    line-height: 19px;
}

/* Image Zoom Overlay */
.rental-main-image {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.rental-main-image:hover .rental-zoom-overlay {
    opacity: 1;
}

.rental-main-image img {
    transition: transform 0.3s ease;
}

.rental-main-image:hover img {
    transform: scale(1.05);
}

.rental-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 24px;
}

/* Login Required Styles */
.rental-login-required {
    text-align: center;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    margin-bottom: 10px;
}

.rental-login-required p {
    margin: 0 0 10px 0;
    color: #856404;
    font-size: 14px;
}

.rental-login-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.2s;
}

.rental-login-btn:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .rental-lightbox-content {
        width: 98vw;
        height: 98vh;
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .rental-lightbox-header {
        padding: 10px 15px;
        height: 50px;
    }
    
    .rental-lightbox-header h3 {
        font-size: 16px;
    }
    
    .rental-lightbox-image-container {
        padding: 10px;
        max-height: calc(98vh - 155px);
    }
    
    .rental-lightbox-image-container img {
        max-width: calc(100% - 80px);
    }
    
    .rental-lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 12px 16px;
    }
    
    .rental-lightbox-thumbnails {
        height: 70px;
        padding: 8px 15px;
    }
    
    .rental-lightbox-thumb {
        width: 45px;
        height: 45px;
    }
    
    .rental-lightbox-counter {
        height: 30px;
        line-height: 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .rental-lightbox-image-container {
        max-height: calc(98vh - 140px);
    }
    
    .rental-lightbox-thumbnails {
        height: 60px;
    }

    .rental-lightbox-thumb {
        width: 40px;
        height: 40px;
    }

    /* Category tiles responsive */
    .rental-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rental-category-image {
        height: 180px;
    }

    .rental-category-title {
        font-size: 20px;
    }

    .rental-breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
    }

    .rental-search-wrapper input {
        font-size: 14px;
        padding: 12px 45px 12px 15px;
    }
}

/* ===========================
   CATEGORY TILES STYLES
   =========================== */

/* Category Search Bar */
.rental-category-search {
    margin-bottom: 30px;
    padding: 0;
}

.rental-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.rental-search-wrapper input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 50px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.rental-search-wrapper input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.rental-search-wrapper .search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 20px;
    pointer-events: none;
}

/* Category Grid */
.rental-categories-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin-bottom: 40px;
}

.rental-categories-grid[data-columns="2"] {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.rental-categories-grid[data-columns="4"] {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Category Tile */
.rental-category-tile {
    display: block;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.rental-category-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.rental-category-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: white;
}

.rental-category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
	padding: 30px;
    transition: transform 0.3s;
}

.rental-category-tile:hover .rental-category-image img {
    transform: scale(1.08);
}

.rental-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.rental-category-tile:hover .rental-category-overlay {
    opacity: 1;
}

.rental-category-icon {
    color: white;
    font-size: 48px;
    width: 48px;
    height: 48px;
}

.rental-category-content {
    padding: 20px;
}

.rental-category-title {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.rental-category-description {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.rental-category-count {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    color: #555;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Category Placeholder (for categories without images) */
.rental-category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rental-category-placeholder .rental-category-icon {
    color: rgba(255, 255, 255, 0.9);
    font-size: 64px;
    width: 64px;
    height: 64px;
}

/* Breadcrumb Navigation */
.rental-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.rental-back-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.rental-back-button:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

.rental-back-button .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.rental-breadcrumb-separator {
    color: #999;
    font-size: 18px;
}

.rental-breadcrumb-current {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

/* No Categories Message */
.rental-no-categories {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

/* Responsive Adjustments for smaller screens */
@media (max-width: 480px) {
    .rental-category-image {
        height: 150px;
    }

    .rental-category-content {
        padding: 15px;
    }

    .rental-category-title {
        font-size: 18px;
    }
}



/* ===========================
   SEARCH RESULTS
   =========================== */

.rental-search-results-page {
    padding: 20px 0;
}

.rental-search-results-header {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.rental-search-results-title {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.search-query {
    color: #667eea;
    font-style: italic;
}

.rental-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 40px 0;
}

.rental-no-results-icon {
    margin-bottom: 20px;
}

.rental-no-results-icon .dashicons {
    font-size: 64px;
    width: 64px;
    height: 64px;
    color: #ccc;
}

.rental-no-results h3 {
    font-size: 28px;
    color: #666;
    margin: 20px 0 10px;
}

.rental-no-results p {
    font-size: 16px;
    color: #777;
    margin: 10px 0;
}

.rental-search-prompt {
    text-align: center;
    padding: 80px 20px;
    margin: 40px 0;
}

.rental-search-prompt-icon {
    margin-bottom: 20px;
}

.rental-search-prompt-icon .dashicons {
    font-size: 72px;
    width: 72px;
    height: 72px;
    color: #ddd;
}

.rental-search-prompt h3 {
    font-size: 28px;
    color: #666;
    margin: 20px 0 10px;
}

.rental-search-prompt p {
    font-size: 16px;
    color: #777;
}

/* ===========================
   SEARCH RESPONSIVE STYLES
   =========================== */

@media (max-width: 768px) {
    .rental-search-bar-input {
        padding: 12px 20px;
        font-size: 15px;
    }

    .rental-search-bar-button {
        padding: 10px 24px;
        font-size: 15px;
    }

    .rental-search-results-title {
        font-size: 20px;
    }

    .rental-no-results h3,
    .rental-search-prompt h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .rental-search-bar-wrapper {
        padding: 15px 0;
    }

    .rental-search-bar-input {
        padding: 10px 16px;
        font-size: 14px;
    }

    .rental-search-bar-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .rental-search-results-header {
        padding: 15px;
    }

    .rental-search-results-title {
        font-size: 18px;
    }

    .rental-no-results,
    .rental-search-prompt {
        padding: 40px 15px;
    }

    .rental-no-results h3,
    .rental-search-prompt h3 {
        font-size: 20px;
    }

    .rental-no-results-icon .dashicons {
        font-size: 48px;
        width: 48px;
        height: 48px;
    }

    .rental-search-prompt-icon .dashicons {
        font-size: 56px;
        width: 56px;
        height: 56px;
    }
}