@font-face {
  font-family: 'feather';
  src: url('https://huemint.com/assets/fonts/feather/feather-webfont.ttf') format('truetype'),
       url('https://huemint.com/assets/fonts/feather/feather-webfont.woff') format('woff'),
       url('https://huemint.com/assets/fonts/feather/feather-webfont.svg#feather') format('svg');
  font-weight: normal;
  font-style: normal;
}

#tb-booking-error {
    transition: background-color 0.8s;
}
/* Common Styles */
.tb-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3399cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
[class^="feather-"], [class*=" feather-"] {
    font-family: 'feather' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.feather-map-pin:before {
    content: "\e98c";
}

.tb-button-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: #3399cc;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.tb-button-link:hover {
    background-color: #2980b9;
    color: #fff;
}

.tb-loading {
    text-align: center;
    padding: 20px;
}

.tb-spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3399cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 0px;
}

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

.tb-success-message {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 10px;
    margin-bottom: 20px;
}

.tb-success-message p {
    margin: 0;
    color: #2e7d32;
}

.tb-error-message {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    padding: 10px;
    margin-bottom: 20px;
}

.tb-error-message p {
    margin: 0;
    color: #d32f2f;
}

/* Court Card Styles */
.tb-court-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
        margin-bottom: 5px !important;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}



.tb-court-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tb-court-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.tb-court-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    background-color: #3399cc;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.tb-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f5f5f5;
    color: #999;
    font-style: italic;
}

.tb-court-card-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.tb-court-card-title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
}

.tb-court-card-title a {
    color: #333;
    text-decoration: none;
}

.tb-court-card-title a:hover {
    color: #3399cc;
}

.tb-court-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.tb-court-card-location {
    display: flex;
    align-items: center;
}

.tb-court-card-location i {
    margin-right: 5px;
}

.tb-court-card-rating {
    display: flex;
    align-items: center;
}

.tb-rating-stars {
    color: #FFD700;
    margin-right: 5px;
}

.tb-court-card-excerpt {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    flex: 1;
}

.tb-court-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.tb-court-card-price {
    font-weight: bold;
}

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

/* Court Single Page Styles */
.tb-court-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    e32rf: Arial, sans-serif;
}

.tb-court-header {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.tb-court-featured-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.tb-court-header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tb-court-header-info {
    flex: 1;
}

.tb-court-categories {
    margin-bottom: 10px;
}

.tb-court-category {
    display: inline-block;
    padding: 5px 10px;
    background-color: #3399cc;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.tb-court-title {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: bold;
}

.tb-court-meta {
    display: flex;
    align-items: center;
}

.tb-court-location {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.tb-court-location i {
    margin-right: 5px;
    color: #3399cc;
}

.tb-court-price-box {
    background-color: #3399cc;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    min-width: 200px;
}

.tb-court-price {
    margin-bottom: 10px;
    font-size: 24px;
}

.tb-price-currency {
    font-size: 0.8em;
    vertical-align: top;
}

.tb-book-now-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #3399cc;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Court Quick Info */
.tb-court-quick-info {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    margin-bottom: 30px;
}

.tb-quick-info-item {
    flex: 1;
    min-width: 150px;
    margin: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tb-quick-info-item i {
    font-size: 24px;
    color: #3399cc;
    margin-bottom: 10px;
}

.tb-quick-info-item span {
    color: #666;
    margin-bottom: 5px;
}

.tb-quick-info-item strong {
    font-size: 16px;
    color: #333;
}

/* Court Content with Tabs */
.tb-court-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
        flex-direction: column;
}

.tb-court-tabs {
    flex: 7;
    margin-right: 30px;
}

.tb-tabs-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    overflow-x: auto;
    white-space: nowrap;
}

.tb-tabs-nav li {
    margin-right: 5px;
    margin-bottom: -1px;
}

.tb-tabs-nav li a {
    display: block;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.tb-tabs-nav li.active a {
    background-color: #fff;
    border-bottom: 1px solid #fff;
    color: #3399cc;
}

.tb-tab-pane {
    display: none;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.tb-tab-pane.active {
    display: block;
}

.tb-tab-pane h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    font-size: 20px;
}

/* Facilities Tab */
.tb-facilities-list {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.tb-facility-item {
    flex: 0 0 33.333%;
    padding: 5px;
    display: flex;
    align-items: center;
}

.tb-facility-item i {
    color: #3399cc;
    margin-right: 5px;
}

/* Timing Tab */
.tb-timing-list {
    max-width: 600px;
}

.tb-timing-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.tb-timing-item:last-child {
    border-bottom: none;
}

.tb-today {
    background-color: #f0f7ff;
    border-radius: 4px;
    padding: 10px;
}

.tb-today-label {
    display: inline-block;
    padding: 2px 5px;
    background-color: #3399cc;
    color: #fff;
    border-radius: 3px;
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

.tb-closed {
    color: #e74c3c;
    font-weight: bold;
}

/* Location Tab */
.tb-location-container {
    margin-bottom: 20px;
}

.tb-court-address {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.tb-court-address i {
    margin-right: 10px;
    color: #3399cc;
    margin-top: 3px;
}

.tb-court-map {
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

/* Gallery Tab */
.tb-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.tb-gallery-item {
    flex: 0 0 calc(25% - 10px);
    margin: 5px;
    border-radius: 4px;
    overflow: hidden;
}

.tb-gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tb-gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.tb-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
}

.tb-lightbox-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    z-index: 9999;
}

.tb-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    margin: 0 auto;
    border: 5px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.tb-lightbox-close {
    position: absolute;
    top: -20px;
    right: -20px;
    color: #fff;
    background-color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    cursor: pointer;
}

/* Reviews Tab */
.tb-reviews-list {
    margin-bottom: 30px;
}

.tb-review-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tb-review-item:last-child {
    border-bottom: none;
}

.tb-review-header {
    display: flex;
    margin-bottom: 10px;
}

.tb-reviewer-avatar {
    margin-right: 15px;
}

.tb-reviewer-avatar img {
    border-radius: 50%;
}

.tb-reviewer-info h4 {
    margin: 0 0 5px;
}

.tb-review-meta {
    display: flex;
    align-items: center;
    color: #666;
}

.tb-review-date {
    margin-right: 10px;
}

.tb-review-rating {
    color: #FFD700;
}

.tb-no-reviews {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
    font-style: italic;
    color: #666;
}

/* Booking Widget */
.tb-booking-widget {
    flex: 3;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
    position: sticky;
    top: 20px;
}

.tb-booking-widget h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    font-size: 20px;
    text-align: center;
}

.tb-booking-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
    margin-bottom: 15px;
}

.tb-form-group {
    flex: 1;
    min-width: 200px;
    margin: 5px;
}

.tb-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.tb-form-group input,
.tb-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.tb-slots-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.tb-time-slot {
    flex: 1 1 calc(33.333% - 19px) !important;
    margin: 0px;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tb-slot-available {
    background-color: #f0f7ff;
    border: 1px solid #cce5ff;
}

.tb-slot-booked {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    opacity: 0.7;
    cursor: not-allowed;
}

.tb-time-slot.selected {
    background-color: #3399cc;
    border-color: #2980b9;
    color: #fff;
}

.tb-time-slot.selected .tb-slot-price {
    color: #000;
}

.tb-slot-time {
    font-weight: bold;
    margin-bottom: 5px;
}

.tb-slot-price {
    color: #3399cc;
}

.tb-slot-status {
    color: #e74c3c;
    font-weight: bold;
}

.tb-booking-summary {
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.tb-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tb-summary-item:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-weight: bold;
}

.tb-user-details {
    margin-bottom: 20px;
}

.tb-user-details h4 {
    margin-top: 0;
    margin-bottom: 15px;
}

.tb-booking-actions {
    text-align: center;
}

.tb-booking-response,
.tb-booking-error {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 4px;
}

.tb-booking-error {
    background-color: #ffebee;
    border: 1px solid #f44336;
    color: #d32f2f;
}

.tb-login-required {
    text-align: center;
    padding: 20px;
}

.tb-login-required p {
    margin-bottom: 15px;
}

/* Similar Courts */
.tb-similar-courts {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.tb-similar-courts h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

.tb-courts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Court Archive Styles */
.tb-courts-archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tb-courts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tb-courts-title {
    margin: 0;
    font-size: 28px;
}

.tb-search-box {
    max-width: 400px;
    width: 100%;
}

.tb-search-form {
    display: flex;
    position: relative;
}

.tb-search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.tb-search-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #666;
}

.tb-courts-main-content {
    display: flex;
    gap: 30px;
}

.tb-courts-filters {
    flex: 0 0 250px;
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 20px;
    height: fit-content;
}

.tb-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tb-filters-header h3 {
    margin: 0;
    font-size: 18px;
}

.tb-clear-filters {
    color: #3399cc;
    text-decoration: none;
    font-size: 14px;
}

.tb-filter-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tb-filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tb-filter-group h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #333;
}

.tb-filter-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.tb-filter-checkboxes {
    max-height: 150px;
    overflow-y: auto;
}

.tb-filter-checkbox {
    display: block;
    margin-bottom: 8px;
}

.tb-filter-checkbox input {
    margin-right: 8px;
}

.tb-price-range {
    margin-top: 15px;
}

.tb-price-slider {
    margin-bottom: 15px;
}

.tb-price-inputs {
    display: flex;
    align-items: center;
}

.tb-price-input {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 8px;
}

.tb-price-input span {
    margin-right: 5px;
    color: #666;
}

.tb-price-input input {
    width: 60px;
    border: none;
    padding: 0;
}

.tb-price-separator {
    margin: 0 10px;
    color: #666;
}

.tb-filter-actions {
    margin-top: 20px;
    text-align: center;
}

.tb-filter-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #3399cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.tb-filter-button:hover {
    background-color: #2980b9;
}

.tb-courts-list {
    flex: 1;
}

.tb-courts-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tb-courts-count {
    color: #666;
}

.tb-courts-sort {
    display: flex;
    align-items: center;
}

.tb-sort-form {
    display: flex;
    align-items: center;
}

.tb-sort-form label {
    margin-right: 10px;
    color: #666;
}

.tb-sort-select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.tb-pagination {
    text-align: center;
    margin-top: 30px;
}

.tb-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.tb-pagination .page-numbers.current {
    background-color: #3399cc;
    color: #fff;
    border-color: #3399cc;
}

.tb-pagination .page-numbers:hover:not(.current) {
    background-color: #f5f5f5;
}

.tb-no-courts {
    text-align: center;
    padding: 50px 0;
    color: #666;
}

.tb-no-courts p {
    margin-bottom: 20px;
    font-size: 18px;
}

.tb-mobile-filter-toggle {
    display: none;
    background-color: #3399cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 16px;
    align-items: center;
    justify-content: center;
}

.tb-mobile-filter-toggle i {
    margin-right: 8px;
}


/* Login Form */
.tb-login-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tb-login-container h2 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.tb-login-form {
    margin-bottom: 20px;
}

.tb-checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.tb-checkbox-label input {
    margin-right: 8px;
}

.tb-register-link {
    text-align: center;
    margin-top: 20px;
}

.tb-register-link a {
    color: #3399cc;
    text-decoration: none;
}

.tb-register-link a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .tb-court-content {
        flex-direction: column;
    }
    
    .tb-court-tabs {
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .tb-booking-widget {
        position: static;
    }
    
    .tb-gallery-item {
        flex: 0 0 calc(33.333% - 10px);
    }
    
    .tb-courts-main-content {
        flex-direction: column;
    }
    
    .tb-courts-filters {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .tb-stat-box {
        min-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .playo-blog-section {
    margin-right: 10px;
    margin-left: 10px;
}
    .tb-court-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tb-court-price-box {
        width: 100%;
        margin-top: 15px;
    }
    
    .tb-quick-info-item {
        min-width: calc(50% - 20px);
    }
    
    .tb-facility-item {
        flex: 0 0 50%;
    }
    
    .tb-gallery-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .tb-courts-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tb-courts-title {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .tb-search-box {
        max-width: 100%;
    }
    
    .tb-courts-list-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tb-courts-count {
        margin-bottom: 10px;
        text-align: center;
    }
    
    .tb-courts-sort {
        justify-content: center;
    }
    
    .tb-mobile-filter-toggle {
        display: flex;
    }
    
    .tb-courts-filters {
        display: none;
    }
    
    .tb-courts-filters.active {
        display: block;
    }
    
    .tb-dashboard-tabs {
        flex-wrap: wrap;
    }
    
    .tb-dashboard-tabs li {
        margin-bottom: 5px;
    }
    
    .tb-dashboard-tabs li a {
        border-bottom: 1px solid #ddd;
    }
    
    .tb-dashboard-tabs li.active a {
        border-bottom: 1px solid #3399cc;
    }
    
    .tb-dashboard-content {
        border-top: 1px solid #ddd;
    }
}

@media screen and (max-width: 576px) {
    .tb-quick-info-item {
        min-width: 100%;
    }
    
    .tb-facility-item {
        flex: 0 0 100%;
    }
    
    .tb-gallery-item {
        flex: 0 0 calc(100% - 10px);
    }
    
    .tb-time-slot {
        flex: 0 0 100%;
    }
    
    .tb-court-card-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tb-court-card-rating {
        margin-top: 5px;
    }
    
    .tb-form-group {
        min-width: 100%;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tb-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

.tb-slide-in-up {
    animation: slideInUp 0.5s ease-in-out;
}

/* Print Styles for Invoice */
@media print {
    body * {
        visibility: hidden;
    }
    
    .tb-invoice,
    .tb-invoice * {
        visibility: visible;
    }
    
    .tb-invoice {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        border: none;
    }
    
    .tb-print-button {
        display: none;
    }
}/**
 * Public styles for Turf Booking System
 */

/* Common Styles */
.tb-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3399cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

  
.tb-button-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: #3399cc;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.tb-button-link:hover {
    background-color: #2980b9;
    color: #fff;
}

.tb-loading {
    text-align: center;
    padding: 20px;
}

.tb-spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3399cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 0px;
}

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

.tb-success-message {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 10px;
    margin-bottom: 20px;
}

.tb-success-message p {
    margin: 0;
    color: #2e7d32;
}

.tb-error-message {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    padding: 10px;
    margin-bottom: 20px;
}

.tb-error-message p {
    margin: 0;
    color: #d32f2f;
}

/* Court Card Styles */
.tb-court-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
   box-shadow: 0px 2px 10px rgba(212, 212, 212, 0.25);
    overflow: hidden;
    height: 100%;
    border: 1px solid #f4f1f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 5px !important;
}



.tb-court-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tb-court-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.tb-court-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    background-color: #3399cc;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.tb-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f5f5f5;
    color: #999;
    font-style: italic;
}

.tb-court-card-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.tb-court-card-title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
}

.tb-court-card-title a {
    color: #333;
    text-decoration: none;
}

.tb-court-card-title a:hover {
    color: #3399cc;
}

.tb-court-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.tb-court-card-location {
    display: flex;
    align-items: center;
}



.tb-court-card-rating {
    display: flex;
    align-items: center;
}

.tb-rating-stars {
    color: #FFD700;
    margin-right: 5px;
}

.tb-court-card-excerpt {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    flex: 1;
}

.tb-court-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}



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

/* Court Single Page Styles */
.tb-court-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    e32rf: Arial, sans-serif;
}

.tb-court-header {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.tb-court-featured-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.tb-court-header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tb-court-header-info {
    flex: 1;
}

.tb-court-categories {
    margin-bottom: 10px;
}

.tb-court-category {
    display: inline-block;
    padding: 5px 10px;
    background-color: #3399cc;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.tb-court-title {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: bold;
}

.tb-court-meta {
    display: flex;
    align-items: flex-start;
}

.tb-court-location {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.tb-court-location i {
    margin-right: 5px;
    color: #3399cc;
}

.tb-court-price-box {
    background-color: #3399cc;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    min-width: 200px;
}

.tb-court-price {
    margin-bottom: 10px;
    font-size: 24px;
}

.tb-price-currency {
    font-size: 0.8em;
    vertical-align: top;
}

.tb-book-now-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #3399cc;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Multi-Step Booking Wizard Styles */
.tb-booking-wizard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;

}

.tb-booking-wizard-header {
    margin-bottom: 30px;
}

.tb-booking-wizard-header h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
    color: #333;
}

/* Progress Bar */
.tb-booking-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 auto 40px;
    max-width: 700px;
}

.tb-booking-progress:after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
    z-index: 1;
}

.tb-progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tb-step-number {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    margin-bottom: 10px;
    color: #999;
    transition: all 0.3s ease;
}

.tb-step-label {
    font-size: 14px;
    color: #999;
    text-align: center;
    transition: all 0.3s ease;
}

.tb-progress-step.active .tb-step-number {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #000;
    font-weight: bold;
}

.tb-progress-step.active .tb-step-label {
    color: #333;
    font-weight: bold;
}
.tb-policy-content p {
    padding: 0 !important;
    font-size: 13px;
}
.tb-progress-step.completed .tb-step-number {
    background-color: #fff;
    border-color: #f1f1f1;
    color: #333;
}



.tb-booking-step {
    padding: 0;
    margin-bottom: 30px;
}

.tb-booking-step h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}
p.text-gray-600 {
    padding: 0 !important;
}
/* Date & Time Selection (Step 1) */
.tb-date-time-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.tb-date-picker-container {
    flex: 1;
    min-width: 300px;
}

.tb-time-slots-container {
    flex: 1;
    min-width: 300px;
}

.tb-time-slots-container h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.tb-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 35rem;
    overflow-y: auto;
    padding: 5px;
}

   

.tb-select-date-message {
    padding: 20px;
    text-align: center;
    color: #999;
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 12rem;
    align-self: center;
    align-content: center;
    align-content: center;
}div#tb-time-slots .tb-loading {
    margin: 0 auto;
}
.tb-select-date-message svg {
    margin: 0 auto;
    width: 64px;
    height: 32px;
    margin-bottom: 10px;
}
.tb-time-slot {
    flex: 0 0 calc(33.333% - 10px);
       padding: 10px 5px;
    border: 1px solid #eee;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tb-time-slot:hover {
    background-color: #f5f5f5;
}

.tb-time-slot.selected {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #333;
}

.tb-time-slot.disabled {
    background-color: #f5f5f5;
    border-color: #eee;
    color: #bbb;
    cursor: not-allowed;
    opacity: 0.7;
}

.tb-slot-time {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    line-height: 1;
    font-size: 13px;
}

.tb-slot-price {
  color: #666;
    font-size: 12px;
    line-height: 1;
}

.tb-slot-status {
      color: #999;
    font-size: 12px;
    line-height: 1;
    font-style: italic;
}

/* Addon Selection (Step 2) */
.tb-addons-container {
    display: flex;
    flex-direction: column;
        margin-top: 2rem;
    gap: 15px;
    margin-bottom: 30px;
}

.tb-addon-item {
    display: flex;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-items: center;
}

.tb-addon-item:hover {
    background-color: #fff;
}

.tb-addon-checkbox {
    margin-right: 15px;
}

.tb-addon-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
        border-color: #dfdfdf !important;
    cursor: pointer;
}

.tb-addon-details {
    flex: 1;
}

.tb-addon-details h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #333;
}

.tb-addon-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.tb-addon-price {
    font-weight: bold;
    color: #333;
    text-align: right;
    font-size: 16px;
    min-width: 80px;
}

.tb-addon-price-type {
    display: block;
    font-size: 12px;
    color: #999;
    font-weight: normal;
    margin-top: 5px;
}

/* Review Details (Step 3) */
.tb-booking-review {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.tb-booking-summary, 
.tb-price-breakdown {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.tb-booking-summary h4, 
.tb-price-breakdown h4,
.tb-user-details h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.tb-summary-item,
.tb-price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tb-summary-label,
.tb-price-label {
    color: #666;
}

.tb-summary-value,
.tb-price-value {
    font-weight: bold;
    color: #333;
}

.tb-price-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 18px;
}

.tb-user-details {
    flex: 100%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.tb-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.tb-form-group {
    flex: 1;
    min-width: 250px;
}

.tb-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.tb-form-group input,
.tb-form-group select,
.tb-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    font-size: 15px;
}

.tb-form-group input:focus,
.tb-form-group select:focus,
.tb-form-group textarea:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

/* Wizard Actions */
.tb-booking-wizard-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    gap:20px;
}

.tb-button {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.tb-next-step {
    background-color: #FFD700;
    color: #333;
}

.tb-next-step:hover {
    background-color: #F5CB00;
}

.tb-prev-step {
    background-color: #f1f1f1;
    color: #333;
}

.tb-prev-step:hover {
    background-color: #e5e5e5;
}

.tb-button:disabled {
    background-color: #f1f1f1;
    color: #999;
    cursor: not-allowed;
}

/* Payment (Step 4) */
.tb-payment-loading {
    text-align: center;
    padding: 40px 20px;
}

.tb-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 0px;
}

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

/* Error Messages */
.tb-booking-error {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff8e1;
    color: #856404;
    border-radius: 6px;
    border-left: 4px solid #FFD700;
}

/* Login Required */
.tb-login-required {
    text-align: center;
    padding: 30px;
}

.tb-login-required p {
    margin-bottom: 20px;
    color: #666;
}

.tb-login-required .tb-button {
    display: inline-block;
    text-decoration: none;
}

/* Override jQuery UI Datepicker styles */
.ui-datepicker {
    padding: 10px;
    border-radius: 8px;
    border: none;
}
.ui-widget.ui-widget-content {
    border: none !important;
}
.ui-datepicker table {
    border: none !important;
}
.ui-datepicker .ui-datepicker-header {
    background: #f9f9f9;
    border: none;
    border-radius: 6px 6px 0 0;
}.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: none !important;
}div#tb-date-picker {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
}

.ui-datepicker .ui-datepicker-title {
    color: #333;
}

.ui-datepicker th {
    color: #666;
}

.ui-datepicker td span, 
.ui-datepicker td a {
    text-align: center;
    padding: 8px;
    border-radius: 4px;
}

.ui-datepicker td a.ui-state-default {
    background: #fff;
    border: none;
    color: #333;
}



.ui-datepicker td a.ui-state-default.ui-state-active {
    background: #FFD700;
    color: #333;
}

.ui-datepicker .ui-state-disabled {
    opacity: 0.5;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .tb-time-slot {
       padding: 10px 10px;
}.tb-details-wrapper {
    flex-direction: column;
}
    .tb-booking-progress {
        max-width: 100%;
    }
    
    .tb-progress-step {
        width: auto;
        flex: 1;
    }
    
    .tb-step-label {
        font-size: 12px;
    }
    
    .tb-time-slot {
        flex: 0 0 calc(50% - 10px);
    }
}
div#page-header {
    display: none;
}
@media screen and (max-width: 576px) {
    .tb-booking-wizard-container {
        padding: 15px 0;
    }
    
    .tb-time-slot {
        flex: 0 0 100%;
    }
    
    .tb-booking-wizard-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .tb-button {
        width: 100%;
    }
    
    .tb-prev-step {
        order: 2;
    }
    
    .tb-next-step {
        order: 1;
    }
}



/* Error Messages */
.tb-booking-error {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #ffebee;
    color: #d32f2f;
    border-radius: 4px;
    border-left: 4px solid #f44336;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .tb-booking-progress {
        max-width: 100%;
    }
    
    .tb-progress-step {
        width: auto;
        flex: 1;
    }
    
    .tb-step-label {
        font-size: 12px;
    }
    
    .tb-booking-court-info {
        flex-direction: column;
    }
    
    .tb-booking-court-image {
        flex: none;
        height: 180px;
    }
    
    .tb-time-slot {
        flex: 0 0 calc(50% - 10px);
    }
}

@media screen and (max-width: 576px) {
    .tb-time-slot {
        flex: 0 0 100%;
    }
    
    .tb-booking-wizard-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .tb-button {
        width: 100%;
    }
}



/* Reviews Section Styles - add to your public CSS */

/* Reviews Summary */
.tb-reviews-summary {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.tb-reviews-average {
    flex: 0 0 180px;
    padding-right: 20px;
    text-align: center;
    border-right: 1px solid #eee;
    margin-right: 20px;
}

.tb-average-rating {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    line-height: 1;
    margin-bottom: 10px;
}

.tb-average-stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 10px;
}

.tb-rating-count {
    color: #666;
    font-size: 14px;
}

.tb-rating-distribution {
    flex: 1;
    min-width: 200px;
}

.tb-rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.tb-rating-label {
    flex: 0 0 60px;
    color: #666;
}

.tb-rating-progress {
    flex: 1;
    height: 12px;
    background-color: #eee;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 10px;
}

.tb-rating-fill {
    height: 100%;
    background-color: #FFD700;
    border-radius: 6px;
}

.tb-rating-percent {
    flex: 0 0 40px;
    text-align: right;
    color: #666;
    font-size: 12px;
}

/* Review List */
.tb-reviews-list {
    margin-bottom: 30px;
}

.tb-review-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.tb-review-item:last-child {
    border-bottom: none;
}

.tb-review-header {
    display: flex;
    margin-bottom: 15px;
}

.tb-reviewer-avatar {
    margin-right: 15px;
}

.tb-reviewer-avatar img {
    border-radius: 50%;
}

.tb-reviewer-info {
    flex: 1;
}

.tb-reviewer-info h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.tb-review-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
    color: #666;
    font-size: 13px;
}

.tb-review-date {
    margin-right: 10px;
}

.tb-verified-badge {
    display: inline-flex;
    align-items: center;
    color: #3399cc;
    font-weight: bold;
}

.tb-verified-badge i {
    margin-right: 3px;
}

.tb-review-rating {
    color: #FFD700;
    font-size: 14px;
}

.tb-review-content {
    color: #333;
    line-height: 1.6;
}

.tb-review-content p:last-child {
    margin-bottom: 0;
}

.tb-no-reviews {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 5px;
    font-style: italic;
    color: #666;
}

/* Review Form */
.tb-review-form {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.tb-review-form h4 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.tb-form-group {
    margin-bottom: 20px;
}

.tb-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.tb-rating-selection {
    margin-bottom: 15px;
}

.tb-rating-stars {
    display: flex;
    font-size: 24px;
}

.tb-rating-star {
    color: #FFD700;
    cursor: pointer;
    margin-right: 5px;
}

.tb-rating-star:hover {
    transform: scale(1.1);
}

textarea#tb-review-content {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.tb-form-actions {
    display: flex;
    align-items: center;
}

#tb-review-response {
    margin-left: 15px;
    flex: 1;
}

.tb-success-message {
    padding: 10px 15px;
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.tb-error-message {
    padding: 10px 15px;
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    color: #d32f2f;
}

.tb-review-notice {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-top: 30px;
}

.tb-review-notice p {
    margin-bottom: 15px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .tb-reviews-average {
        flex: 0 0 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        margin-right: 0;
        margin-bottom: 20px;
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .tb-rating-distribution {
        flex: 0 0 100%;
    }
}








.tb-courts-slider-container .tb-slider-nav {
    display: flex;
    gap: 0px;
    margin-top: 2rem;
    justify-content: center;
}
.tb-courts-slider-container .tb-slider-nav button {
    position: relative !important;
}
.tb-slider-nav button.slick-disabled {
    opacity: 0.5;
    box-shadow: none;
}

































/* 
 * Turf Booking - User Dashboard Styles
 */

/* General Dashboard Layout */
.tb-dashboard-wrapper {
    display: flex;
    min-height: 80vh;
    background-color: #f5f7fa;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}
.tb-dashboard-wrapper .tb-main-content {
    background: rgb(245, 245, 245) !important;
    box-shadow: none !important;
    border: none;
}
/* Sidebar Styles */
.tb-dashboard-wrapper .tb-sidebar {
    width: 280px;
    background-color: #fff;
    border-right: 1px solid #eaedf3;
    padding: 20px 0;
    flex-shrink: 0;
}

.tb-dashboard-wrapper .tb-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tb-dashboard-wrapper .tb-nav-menu li {
    margin-bottom: 5px;
}

.tb-dashboard-wrapper .tb-nav-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.tb-dashboard-wrapper .tb-nav-menu li a i {
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.tb-dashboard-wrapper .tb-nav-menu li a:hover {
    background-color: #f7fafc;
}

.tb-dashboard-wrapper .tb-nav-menu li.active a {
    background-color: #f5f5f5;
    border-radius: 10px;
}
.tb-dashboard-wrapper ul.tb-nav-menu {
    margin: 0px 12px !important;
}
/* Main Content Area */
.tb-dashboard-wrapper .tb-main-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.tb-dashboard-wrapper .tb-page-header {
    margin-bottom: 30px;
}

.tb-page-header h1 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 2px;
}

.tb-page-header p {
    font-size: 15px;
    color: #718096;
    margin: 0;
}

.tb-header-with-back {
    display: flex;
    align-items: center;
}

.tb-back-link {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tb-back-link:hover {
    background: #f7fafc;
    color: #eeee22;
}

/* Messages */
.tb-dashboard-wrapper .tb-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.tb-dashboard-wrapper .tb-message p {
    margin: 0;
}

.tb-dashboard-wrapper .tb-success {
    background-color: #c6f6d5;
    color: #2f855a;
    border: 1px solid #9ae6b4;
}

.tb-dashboard-wrapper .tb-error {
    background-color: #fed7d7;
    color: #c53030;
    border: 1px solid #feb2b2;
}

/* Stats Cards */
.tb-dashboard-wrapper .tb-stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tb-dashboard-wrapper .tb-stat-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tb-stat-card-content h3 {
    font-size: 14px;
    font-weight: 500;
    color: #000;

}

.tb-stat-number {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 5px;
}

.tb-stat-growth {
    font-size: 13px;
    color: #718096;
}

.tb-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    font-size: 20px;
}

/* Section Headers */
.tb-section-header {
    margin-bottom: 20px;
}

.tb-section-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 5px;
}

.tb-section-header p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.tb-section-header-with-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.tb-section-title h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 5px;
}

.tb-section-title p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.tb-view-all {
    font-size: 14px;
    color: #707070;
    text-decoration: none;
    font-weight: 500;
}

.tb-view-all:hover {
    text-decoration: underline;
}

/* Section Cards */
.tb-dashboard-wrapper .tb-section-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-bottom: 24px;
}

.tb-dashboard-wrapper .tb-section-card .tb-section-title {
    margin-bottom: 20px;
}

.tb-section-card .tb-section-title h2,
.tb-section-card .tb-section-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 5px;
}

.tb-section-card .tb-section-title p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

/* Next Booking Card */
.tb-next-booking-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 24px;
}

.tb-booking-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tb-dashboard-wrapper .tb-booking-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #eeee22;
    color: #2b2b2b;
    font-size: 20px;
    margin-right: 16px;
}

.tb-dashboard-wrapper .tb-booking-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 5px;
}

.tb-booking-title p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.tb-booking-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tb-booking-detail {
    display: flex;
    align-items: center;
    margin-right: 24px;
    margin-bottom: 12px;
}

.tb-booking-detail i {
    color: #eeee22;
    margin-right: 8px;
    font-size: 16px;
}

.tb-booking-detail span {
    font-size: 14px;
    color: #4a5568;
}

.tb-dashboard-wrapper .tb-booking-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.tb-booking-actions .tb-button {
    margin-left: 12px;
}

/* Recent Bookings List */
.tb-recent-bookings-list {
    margin-top: 20px;
}

.tb-recent-booking-item {
    background: #fff;
    margin-bottom: 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 10px;
    border-bottom: 1px solid #e2e8f0;
}.tb-booking-info p {
    padding: 0 !important;
}

.tb-recent-booking-item:last-child {
    border-bottom: none;
}

.tb-dashboard-wrapper .tb-booking-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: #1a202c;
    margin: 0 0 5px;
}

.tb-dashboard-wrapper .tb-booking-info p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.tb-dashboard-wrapper .tb-booking-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.tb-status-confirmed {
    background-color: #c6f6d5;
    color: #2f855a;
}

.tb-status-pending {
    background-color: #feebc8;
    color: #c05621;
}

.tb-status-cancelled {
    background-color: #fed7d7;
    color: #c53030;
}

.tb-status-completed {
    background-color: #e9d8fd;
    color: #6b46c1;
}

/* Booking Table */
.tb-bookings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tb-booking-status-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tb-booking-status-tabs li {
    margin: 0;
}

.tb-booking-status-tabs li a {
    display: block;
    padding: 10px 20px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.tb-nav-menu li a svg {
    padding-right: 8px;
}

.tb-section-title p {
    padding: 0 !important;
}
.tb-booking-status-tabs li.active a {
    color: #191918;
    border-bottom-color: #eeee22;
}
.tb-profile-section input {
    border-color: #e0e0e0 !important;
    padding: 8px 12px !important;
}

.tb-bookings-filter-tools {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.tb-date-filter,
.tb-filter-options {
    margin-left: 12px;
}

.tb-bookings-table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tb-table-header {
    display: flex;
    background-color: #f7fafc;
    padding: 15px;
    font-weight: 500;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.tb-table-row {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.tb-table-row:hover {
    background-color: #f7fafc;
}

.tb-table-row:last-child {
    border-bottom: none;
}

.tb-th,
.tb-td {
    flex: 1;
    font-size: 14px;
}

.tb-th.tb-actions,
.tb-td.tb-actions {
    flex: 0 0 80px;
    text-align: right;
}

.tb-status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Action Dropdown */
.tb-action-dropdown {
    position: relative;
}

.tb-action-button {
    background: none;
    border: none;
    color: #718096;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.tb-action-button:hover {
    background-color: #f7fafc;
    color: #eeee22;
}

.tb-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    width: 200px;
    z-index: 10;
    display: none;
}

.tb-action-dropdown:hover .tb-dropdown-menu {
    display: block;
}

.tb-dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.tb-dropdown-item i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.tb-dropdown-item:hover {
    background-color: #f7fafc;
    color: #eeee22;
}

.tb-dropdown-item.tb-text-danger {
    color: #e53e3e;
}

.tb-dropdown-item.tb-text-danger:hover {
    background-color: #fed7d7;
    color: #e53e3e;
}

/* No Bookings Message */
.tb-no-bookings {
    text-align: center;
    padding: 50px 20px;
}

.tb-no-bookings i {
    font-size: 48px;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.tb-no-bookings p {
    font-size: 16px;
    color: #718096;
    margin-bottom: 20px;
}

/* Buttons */
.tb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
     background-color: #eeee22;
    color: #444040;
    transition: all 0.2s ease;
    border: none;
}

.tb-button i {
    margin-right: 8px;
}

.tb-button-primary {
    background-color: #eeee22;
    color: #444040;
}



.tb-button-danger {
    background-color: #f56565;
    color: #fff;
}

.tb-button-danger:hover {
    background-color: #c53030;
}

.tb-button-outline {
    background-color: transparent;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.tb-button-outline:hover {
    background-color: #f7fafc;
}

.tb-button-text {
    background-color: transparent;
    color: #eeee22;
    padding: 0;
}

.tb-button-text:hover {
    text-decoration: underline;
}

.tb-text-danger {
    color: #e53e3e;
}

/* Profile Page Styles */
.tb-profile-picture-container {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.tb-profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 24px;
}

.tb-profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-profile-picture-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tb-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.tb-form-group {
    margin-bottom: 20px;
}

.tb-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
}

.tb-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    color: #1a202c;
    transition: border-color 0.2s ease;
}

.tb-input:focus {
    outline: none;
    border-color: #eeee22;
}

.tb-input-hint {
    font-size: 12px;
    color: #718096;
    margin-top: 5px;
}

.tb-form-actions {
    margin-top: 30px;
}

/* Booking Details Page */
.tb-booking-details-content {
    max-width: 800px;
}

.tb-booking-hero {
    margin-bottom: 24px;
}

.tb-booking-court-info {
    display: flex;
}

.tb-booking-court-image {


    border-radius: 8px;
    overflow: hidden;
    margin-right: 24px;
    flex-shrink: 0;
}

.tb-booking-court-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2e8f0;
    color: #a0aec0;
    font-size: 24px;
}

.tb-dashboard-wrapper .tb-booking-court-details h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 12px;
}

.tb-booking-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.tb-dashboard-wrapper .tb-booking-date-time {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tb-dashboard-wrapper .tb-booking-date,
.tb-booking-time,
.tb-booking-location {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4a5568;
}

.tb-booking-date i,
.tb-booking-time i,
.tb-booking-location i {
    margin-right: 8px;
    color: #eeee22;
}

.tb-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.tb-detail-item {
    margin-bottom: 16px;
}

.tb-detail-label {
    font-size: 12px;
    color: #718096;
    margin-bottom: 4px;
}

.tb-dashboard-wrapper .tb-detail-value {
    font-size: 14px;
    color: #1a202c;
    font-weight: 500;
}

.tb-dashboard-wrapper .tb-payment-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.tb-payment-status.tb-status-completed {
    background-color: #c6f6d5;
    color: #2f855a;
}

.tb-payment-status.tb-status-pending {
    background-color: #feebc8;
    color: #c05621;
}

.tb-payment-status.tb-status-refunded {
    background-color: #e9d8fd;
    color: #6b46c1;
}

.tb-payment-status.tb-status-failed {
    background-color: #fed7d7;
    color: #c53030;
}

.tb-addons-list {
    margin-top: 16px;
}

.tb-addon-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.tb-addon-item:first-child {
    padding-top: 0;
}

.tb-addon-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.tb-addon-name {
    font-size: 14px;
    color: #1a202c;
}

.tb-addon-price {
    font-size: 14px;
    color: #eeee22;
    font-weight: 500;
}

.tb-cancellation-note {
    font-size: 14px;
    color: #e53e3e;
    margin-bottom: 16px;
}
.tb-booking-court-details {
    width: 100%;
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
    .tb-dropdown-menu {
    top: auto !important;
    left: 50%;
    bottom: 24px !important;
    transform: translateX(-50%);
}.tb-dropdown-menu.active {
    display: block;
}


    .tb-nav-menu li a svg {
    width: 20px;
}
    .tb-dashboard-wrapper {
        flex-direction: column;
    }
    .tb-dashboard-wrapper .tb-main-content {
    padding: 0;
}ul.tb-booking-status-tabs {
    margin: 0 !important;
}.tb-bookings-header {

    align-items: unset !important;
}
    
      .tb-sidebar-nav {
        width: 100%;
        position: fixed;
        bottom: 0;
        background: #fff;
        margin: 0;
        left: 0;
        padding: 10px 0;
        z-index: 9;
    }
    
    .tb-nav-menu {
        display: flex;
    }
    
    .tb-nav-menu li {
        margin-bottom: 0;
        width: 33.333%;
 
    }
    .tb-nav-menu li:not(:last-child) {
    margin-right: 10px;
}
    .tb-nav-menu li a {
        padding: 10px 15px;
        border-left: none;
        font-size: 12px;
                flex-direction: column;
        border-bottom: 2px solid transparent;
    }
    
    .tb-nav-menu li.active a {
        border-left-color: transparent;
        border-bottom-color: #eeee22;
    }
    
    .tb-stats-cards {
        grid-template-columns: 1fr;
    }
    
    .tb-booking-court-info {
        flex-direction: column;
    }
    
    .tb-booking-court-image {
        width: 100%;
        height: 180px;
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .tb-booking-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .tb-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .tb-table-header,
    .tb-table-row {
        display: none;
    }
    
    .tb-bookings-table {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tb-bookings-table .tb-table-row {
        display: block;
        padding: 0;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    
    .tb-bookings-table .tb-td {
        padding: 12px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .tb-bookings-table .tb-td:before {
        content: attr(data-label);
        font-weight: 500;
        color: #718096;
    }
    
    .tb-bookings-table .tb-td.tb-actions {
        justify-content: center;
    }
    
    .tb-bookings-table .tb-td.tb-actions:before {
        display: none;
    }
    
    .tb-bookings-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .tb-booking-status-tabs {
        width: 100%;
    }
    
    .tb-booking-status-tabs li {
        flex: 1;
        text-align: center;
    }
    
    .tb-bookings-actions {
        width: 100%;
    }
    
    .tb-button {
        width: 100%;
    }
    
    .tb-bookings-filter-tools {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .tb-date-filter,
    .tb-filter-options {
        width: 48%;
        margin-left: 0;
    }
    
    .tb-bookings-content {
        margin-top: 15px;
    }
    
    .tb-form-row {
        grid-template-columns: 1fr;
    }
    
    .tb-profile-picture-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tb-profile-picture {
        margin-right: 0;
        margin-bottom: 16px;
    }
}
.tb-table-row:last-child .tb-dropdown-menu {
    top: auto !important;
    bottom: 0;
}.tb-booking-title p {
    padding: 0 !important;
}.tb-booking-detail svg {
    width: 14px;
    padding-right: 5px;
}.tb-next-booking-card {
    margin-bottom: 2rem;
}.tb-section-header p {
    padding: 0 !important;
}
.tb-page-header p {
    padding: 0 !important;
}



/* Add these styles to your public/css/turf-booking-public.css file */

/* Filter and sort dropdown styling */
.tb-dashboard-wrapper .tb-date-picker-container,
.tb-filter-dropdown {
    position: absolute;
    z-index: 100;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: 5px;
}

.tb-date-filter-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.tb-filter-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Animation for the loading state */
.tb-loading-row {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* Messages styling */
.tb-message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 4px;
}

.tb-success {
    background-color: #e7f7ee;
    border: 1px solid #34c759;
    color: #1d7738;
}

.tb-error {
    background-color: #feeef0;
    border: 1px solid #ff3b30;
    color: #c01e1e;
}



/* No results message */
.tb-no-filtered-bookings {
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px dashed #ddd;
}

/* Profile image upload styling */
.tb-profile-picture-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .tb-profile-picture-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.tb-profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0f0f0;
    background-color: #f8f9fa;
    position: relative;
}

.tb-profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-profile-picture:hover::after {
    content: '\f030';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}

.tb-profile-picture-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

#tb-image-upload-messages {
    margin-top: 10px;
}

#tb-image-upload-messages p {
    padding: 8px 12px;
    border-radius: 4px;
    margin: 0;
}



#tb-image-upload-messages p.tb-success {
    background-color: #e7f7ee;
    border: 1px solid #34c759;
    color: #1d7738;
}

#tb-image-upload-messages p.tb-error {
    background-color: #feeef0;
    border: 1px solid #ff3b30;
    color: #c01e1e;
}

/* Password strength and match indicators */
#password-strength,
#password-match {
    margin-top: 5px;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    font-size: 12px;
}

.very-weak {
    background-color: #feeef0;
    color: #c01e1e;
}

.weak {
    background-color: #fff3e0;
    color: #e67700;
}

.medium {
    background-color: #fff8e1;
    color: #ffa000;
}

.strong {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.very-strong {
    background-color: #e0f2f1;
    color: #00695c;
}

/* Form validation messages */
.tb-form-message {
    font-size: 12px;
    margin-top: 5px;
    padding: 3px 8px;
    border-radius: 3px;
}

/* Action dropdown menu styles */
.tb-action-dropdown {
    position: relative;
    display: inline-block;
}

.tb-action-button {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.tb-action-button:hover {
    background-color: #e9ecef;
}

.tb-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    min-width: 180px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
}

.tb-action-dropdown:hover .tb-dropdown-menu {
    display: block;
}

.tb-dropdown-item {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.tb-dropdown-item:hover {
    background-color: #f8f9fa;
    text-decoration: none;
}

.tb-text-danger {
    color: #dc3545 !important;
}

.tb-dropdown-item.tb-text-danger:hover {
    background-color: #feeef0;
}