/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* Base responsive font size */
.ast-builder-menu-1 {
    font-size: 2vw; /* Adjust this value as needed */
}

/* Media query for tablets and smaller screens */
@media (max-width: 922px) {
    .ast-builder-menu-1 {
        font-size: 16px; /* Maximum font size for tablets */
    }
}

/* Media query for desktops and larger screens */
@media (min-width: 923px) {
    .ast-builder-menu-1 {
        font-size: 18px; /* Maximum font size for desktops */
    }
}

/* Hide star rating in shop */
.star-rating {
display: none;
}
/* Hide star rating in right widget bar */
.woocommerce ul.product_list_widget li .star-rating {
    display: none;
}

.woocommerce-table--order-details td:nth-child(3),
.woocommerce-table--order-details td:nth-child(4) {
    display: none;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #ffffff; /* Assuming a light background */
}

.table th,
.table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dddddd; /* Subtle border for cells */
    text-align: left; /* Align text to the left or center based on preference */
}

.table thead th {
    background-color: #f4f4f4;
    color: #333333;
    font-weight: bold;
    /* Add a bottom border to header if desired */
    border-bottom: 2px solid #dddddd;
}

.table tbody tr:hover {
    background-color: #f9f9f9; /* Hover effect for rows */
}

/* Add styles for buttons or links in the Cancel/Reschedule columns */
.table .button-link {
    display: inline-block;
    padding: 8px 12px;
    background-color: #ffa500; /* Button color */
    color: white;
    text-decoration: none;
    border-radius: 0px;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.table .button-link:hover {
    background-color: #cc8400; /* Darker color on hover */
}

/* start bookly styling
/* Ensure high specificity by repeating the class */
.table.table-striped.bookly-appointments-list.dataTable.no-footer.dtr-inline {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fff;
}

.table.table-striped.bookly-appointments-list.dataTable.no-footer.dtr-inline thead th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: bold;
    padding: 12px;
    border-bottom: 2px solid #ddd;
}

.table.table-striped.bookly-appointments-list.dataTable.no-footer.dtr-inline tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.table.table-striped.bookly-appointments-list.dataTable.no-footer.dtr-inline tbody tr:hover {
    background-color: #f0f0f0;
}

.table.table-striped.bookly-appointments-list.dataTable.no-footer.dtr-inline td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

/* Button/link styling for actions */
.table.table-striped.bookly-appointments-list.dataTable.no-footer.dtr-inline .btn-view {
    background-color: #ffa500; /* Replace with your button color */
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
}

.table.table-striped.bookly-appointments-list.dataTable.no-footer.dtr-inline .btn-view:hover {
    background-color: #cc8400; /* Darker shade for hover effect */
}