/*
Theme Name: Classima Child
Theme URI: https://www.radiustheme.com/
Description: Classima Child Theme
Author: RadiusTheme
Author URI: https://www.radiustheme.com/
Template: classima
Version: 1.0.0
Text Domain: classima-child
*/

/* Add your custom styles below this line */

/* Book Now Button Styles */
.custom-book-now-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b5828c;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    margin-top: 8px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-book-now-btn i {
    padding-right: 15px;
}

.custom-book-now-btn:hover {
    background-color: #c0392b;
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.book-now-container {
    margin: 25px 0;
    text-align: center;
}

/* Booking Form Styles */
#booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

#booking-form .form-group {
    margin-bottom: 25px;
}

#booking-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
}

#booking-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

#booking-form input:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

#booking-form button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#booking-form button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Alert Styles */
.alert {
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

/* Booking Info Styles */
.booking-listing-info {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.booking-listing-info h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
}

.booking-listing-info p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #booking-form {
        padding: 20px;
    }
    
    .booking-listing-info {
        padding: 20px;
    }
}

/* Payment Section Styles */
.payment-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.payment-section h3 {
    margin-bottom: 20px;
    color: #333;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-option {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #e74c3c;
}

.payment-option.selected {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.payment-option img {
    height: 40px;
    margin-bottom: 10px;
}

/* Admin Booking List Styles */
.booking-admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.booking-admin-table th,
.booking-admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.booking-admin-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
}

.booking-admin-table tr:hover {
    background-color: #f9f9f9;
}

.booking-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

.status-pending {
    background-color: #ffeb3b;
    color: #333;
}

.status-confirmed {
    background-color: #4caf50;
    color: white;
}

.status-cancelled {
    background-color: #f44336;
    color: white;
}

.status-completed {
    background-color: #2196f3;
    color: white;
}

.status-paid {
    background-color: #9c27b0;
    color: white;
}

/* Manage Listings Styles */
.rtcl-manage-listings .rtcl-responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.rtcl-manage-listings .rtcl-responsive-table th,
.rtcl-manage-listings .rtcl-responsive-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.rtcl-manage-listings .rtcl-responsive-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.rtcl-manage-listings .btn {
    display: inline-block;
    padding: 5px 10px;
    margin: 2px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 12px;
}

.rtcl-alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.rtcl-alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}


/*
Theme Name: Classima Child
Theme URI: https://www.radiustheme.com/
Description: Classima Child Theme
Author: RadiusTheme
Author URI: https://www.radiustheme.com/
Template: classima
Version: 1.0.0
Text Domain: classima-child
*/

/* Add your custom styles below this line */



@media screen and (max-width: 767px) {
    .rtcl-manage-listings .rtcl-responsive-table thead {
        display: none;
    }
    
    .rtcl-manage-listings .rtcl-responsive-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
    }
    
    .rtcl-manage-listings .rtcl-responsive-table td {
        display: block;
        text-align: right;
        border: none;
        border-bottom: 1px solid #ddd;
    }
    
    .rtcl-manage-listings .rtcl-responsive-table td:last-child {
        border-bottom: none;
    }
    
    .rtcl-manage-listings .rtcl-responsive-table td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
    }
}

/* REMOVED the older icon styling block that was here */

/* My Account Navigation Icon Styles */

/* Common style for My Account navigation items */
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li a {
    position: relative; 
    padding-left: 40px; /* Adjust padding to make space for the icon */
}

/* Base style for all icons in the menu */
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link a::before {
    background-color: #bebebe; /* Default icon color */
    content: "";
    height: 18px; 
    left: 15px; /* Adjust position as needed */
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    width: 18px; 
    top: 50%; 
    transform: translateY(-50%); 
}

/* Icon for Customer Inquiry */
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link--customer-inquiry a::before {
    /* Ensure xmlns is exactly 'http://www.w3.org/2000/svg' */
    -webkit-mask-image: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2218%22 height=%2218%22 viewBox=%220 0 24 24%22%3E%3Cpath d=%22M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z%22 fill=%22%23BEBEBE%22/%3E%3C/svg%3E');
    mask-image: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2218%22 height=%2218%22 viewBox=%220 0 24 24%22%3E%3Cpath d=%22M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z%22 fill=%22%23BEBEBE%22/%3E%3C/svg%3E');
    height: 18px;
}

/* Icon for Manage Ads (Admin only) */
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link--manage-ads a::before {
    -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'%3E%3Cpath d='M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z' fill='%23BEBEBE'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'%3E%3Cpath d='M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z' fill='%23BEBEBE'/%3E%3C/svg%3E");
    height: 18px;
}

/* Icon for Dashboard (if you want to ensure it uses this system or override theme's) */
/* You might not need this if your theme already styles the dashboard icon correctly.
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link--dashboard a::before {
    -webkit-mask-image: url(data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.413 18H11.23a1.59 1.59 0 0 1-1.587-1.587V9.944a1.59 1.59 0 0 1 1.587-1.587h5.183A1.59 1.59 0 0 1 18 9.944v6.469A1.59 1.59 0 0 1 16.413 18ZM11.23 9.643a.302.302 0 0 0-.301.301v6.469c0 .166.135.301.301.301h5.183a.302.302 0 0 0 .301-.301V9.944a.302.302 0 0 0-.301-.301H11.23ZM16.413 7.071H11.23a1.59 1.59 0 0 1-1.587-1.587V1.587A1.59 1.59 0 0 1 11.23 0h5.183A1.59 1.59 0 0 1 18 1.587v3.897a1.59 1.59 0 0 1-1.587 1.587ZM11.23 1.286a.302.302 0 0 0-.301.301v3.897c0 .167.135.302.301.302h5.183a.302.302 0 0 0 .301-.302V1.587a.302.302 0 0 0-.301-.301H11.23ZM6.77 9.643H1.587A1.59 1.59 0 0 1 0 8.056V1.587A1.59 1.59 0 0 1 1.587 0H6.77a1.59 1.59 0 0 1 1.587 1.587v6.469A1.59 1.59 0 0 1 6.77 9.643ZM1.587 1.286a.302.302 0 0 0-.301.301v6.469c0 .166.135.301.301.301H6.77a.302.302 0 0 0 .301-.301V1.587a.302.302 0 0 0-.301-.301H1.587ZM6.77 18H1.587A1.59 1.59 0 0 1 0 16.413v-3.897a1.59 1.59 0 0 1 1.587-1.587H6.77a1.59 1.59 0 0 1 1.587 1.587v3.897A1.59 1.59 0 0 1 6.77 18Zm-5.183-5.786a.302.302 0 0 0-.301.302v3.897c0 .166.135.301.301.301H6.77a.302.302 0 0 0 .301-.301v-3.897a.302.302 0 0 0-.301-.302H1.587Z' fill='%23BEBEBE'/%3E%3C/svg%3E);
    mask-image: url(data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.413 18H11.23a1.59 1.59 0 0 1-1.587-1.587V9.944a1.59 1.59 0 0 1 1.587-1.587h5.183A1.59 1.59 0 0 1 18 9.944v6.469A1.59 1.59 0 0 1 16.413 18ZM11.23 9.643a.302.302 0 0 0-.301.301v6.469c0 .166.135.301.301.301h5.183a.302.302 0 0 0 .301-.301V9.944a.302.302 0 0 0-.301-.301H11.23ZM16.413 7.071H11.23a1.59 1.59 0 0 1-1.587-1.587V1.587A1.59 1.59 0 0 1 11.23 0h5.183A1.59 1.59 0 0 1 18 1.587v3.897a1.59 1.59 0 0 1-1.587 1.587ZM11.23 1.286a.302.302 0 0 0-.301.301v3.897c0 .167.135.302.301.302h5.183a.302.302 0 0 0 .301-.302V1.587a.302.302 0 0 0-.301-.301H11.23ZM6.77 9.643H1.587A1.59 1.59 0 0 1 0 8.056V1.587A1.59 1.59 0 0 1 1.587 0H6.77a1.59 1.59 0 0 1 1.587 1.587v6.469A1.59 1.59 0 0 1 6.77 9.643ZM1.587 1.286a.302.302 0 0 0-.301.301v6.469c0 .166.135.301.301.301H6.77a.302.302 0 0 0 .301-.301V1.587a.302.302 0 0 0-.301-.301H1.587ZM6.77 18H1.587A1.59 1.59 0 0 1 0 16.413v-3.897a1.59 1.59 0 0 1 1.587-1.587H6.77a1.59 1.59 0 0 1 1.587 1.587v3.897A1.59 1.59 0 0 1 6.77 18Zm-5.183-5.786a.302.302 0 0 0-.301.302v3.897c0 .166.135.301.301.301H6.77a.302.302 0 0 0 .301-.301v-3.897a.302.302 0 0 0-.301-.302H1.587Z' fill='%23BEBEBE'/%3E%3C/svg%3E);
}*/

/* Active/Hover state for icons */
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.is-active a::before,
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link a:hover::before {
    background-color: var(--rtcl-primary-color); /* Uses the theme's primary color variable */
}

/* The rule for dashboard icon you provided - this might be redundant if the theme handles it,
   or if you add a specific mask for it above like the others.
   If it's needed, ensure its SVG is correct.
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--dashboard a:before
 {
    height: 18px;
    -webkit-mask-image: url(data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.413 18H11.23a1.59 1.59 0 0 1-1.587-1.587V9.944a1.59 1.59 0 0 1 1.587-1.587h5.183A1.59 1.59 0 0 1 18 9.944v6.469A1.59 1.59 0 0 1 16.413 18ZM11.23 9.643a.302.302 0 0 0-.301.301v6.469c0 .166.135.301.301.301h5.183a.302.302 0 0 0 .301-.301V9.944a.302.302 0 0 0-.301-.301H11.23ZM16.413 7.071H11.23a1.59 1.59 0 0 1-1.587-1.587V1.587A1.59 1.59 0 0 1 11.23 0h5.183A1.59 1.59 0 0 1 18 1.587v3.897a1.59 1.59 0 0 1-1.587 1.587ZM11.23 1.286a.302.302 0 0 0-.301.301v3.897c0 .167.135.302.301.302h5.183a.302.302 0 0 0 .301-.302V1.587a.302.302 0 0 0-.301-.301H11.23ZM6.77 9.643H1.587A1.59 1.59 0 0 1 0 8.056V1.587A1.59 1.59 0 0 1 1.587 0H6.77a1.59 1.59 0 0 1 1.587 1.587v6.469A1.59 1.59 0 0 1 6.77 9.643ZM1.587 1.286a.302.302 0 0 0-.301.301v6.469c0 .166.135.301.301.301H6.77a.302.302 0 0 0 .301-.301V1.587a.302.302 0 0 0-.301-.301H1.587ZM6.77 18H1.587A1.59 1.59 0 0 1 0 16.413v-3.897a1.59 1.59 0 0 1 1.587-1.587H6.77a1.59 1.59 0 0 1 1.587 1.587v3.897A1.59 1.59 0 0 1 6.77 18Zm-5.183-5.786a.302.302 0 0 0-.301.302v3.897c0 .166.135.301.301.301H6.77a.302.302 0 0 0 .301-.301v-3.897a.302.302 0 0 0-.301-.302H1.587Z' fill='%23BEBEBE'/%3E%3C/svg%3E);
    mask-image: url(data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.413 18H11.23a1.59 1.59 0 0 1-1.587-1.587V9.944a1.59 1.59 0 0 1 1.587-1.587h5.183A1.59 1.59 0 0 1 18 9.944v6.469A1.59 1.59 0 0 1 16.413 18ZM11.23 9.643a.302.302 0 0 0-.301.301v6.469c0 .166.135.301.301.301h5.183a.302.302 0 0 0 .301-.301V9.944a.302.302 0 0 0-.301-.301H11.23ZM16.413 7.071H11.23a1.59 1.59 0 0 1-1.587-1.587V1.587A1.59 1.59 0 0 1 11.23 0h5.183A1.59 1.59 0 0 1 18 1.587v3.897a1.59 1.59 0 0 1-1.587 1.587ZM11.23 1.286a.302.302 0 0 0-.301.301v3.897c0 .167.135.302.301.302h5.183a.302.302 0 0 0 .301-.302V1.587a.302.302 0 0 0-.301-.301H11.23ZM6.77 9.643H1.587A1.59 1.59 0 0 1 0 8.056V1.587A1.59 1.59 0 0 1 1.587 0H6.77a1.59 1.59 0 0 1 1.587 1.587v6.469A1.59 1.59 0 0 1 6.77 9.643ZM1.587 1.286a.302.302 0 0 0-.301.301v6.469c0 .166.135.301.301.301H6.77a.302.302 0 0 0 .301-.301V1.587a.302.302 0 0 0-.301-.301H1.587ZM6.77 18H1.587A1.59 1.59 0 0 1 0 16.413v-3.897a1.59 1.59 0 0 1 1.587-1.587H6.77a1.59 1.59 0 0 1 1.587 1.587v3.897A1.59 1.59 0 0 1 6.77 18Zm-5.183-5.786a.302.302 0 0 0-.301.302v3.897c0 .166.135.301.301.301H6.77a.302.302 0 0 0 .301-.301v-3.897a.302.302 0 0 0-.301-.302H1.587Z' fill='%23BEBEBE'/%3E%3C/svg%3E);
}
*/
