 .date-container, .time-container {
            display: flex;
            overflow-x: auto; /* Allow horizontal scrolling */
            white-space: nowrap; /* Prevent wrapping */
            padding: 10px; /* Add some padding */
        }
        .date-button, .time-button {
            border: 2px solid #007bff;
            border-radius: 5px;
            padding: 10px 20px;
            margin: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .date-button:hover, .time-button:hover {
            background-color: #e9ecef;
        }
        .date-button.active, .time-button.active {
            background-color: #007bff;
            color: white;
        }
		.team__card.highlighted {
    border: 2px solid #ff9900; /* Highlight color */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow effect */
}
    /* Basic styling for the sidebar and buttons */
    .sidebar_blog_card {
        border: 1px solid #ddd;
        padding: 15px;
        border-radius: 8px;
        transition: box-shadow 0.2s;
        margin-bottom: 20px;
    }

    .sidebar_blog_card:hover {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .selected {
        border: 2px solid #007bff; /* Highlight color */
        background-color: #e9f7ff; /* Light background color */
    }

    .cart-controls {
        margin-top: 10px;
    }

    .btn-primary {
        background-color: #007bff;
        color: white;
        border: none;
        transition: background-color 0.3s;
    }

    .btn-primary:hover {
        background-color: #0056b3;
    }

    .quantity-controller {
        display: flex;
        align-items: center;
    }

    .quantity {
        min-width: 30px;
        text-align: center;
    }

    .btn-outline-secondary {
        color: #6c757d;
        border: 1px solid #6c757d;
        transition: background-color 0.3s, color 0.3s;
    }

    .btn-outline-secondary:hover {
        background-color: #e2e2e2;
    }
	.highlight {
    background-color: #f0f8ff; /* Light blue background */
    border: 2px solid #007bff; /* Blue border */
    border-radius: 4px;
    padding: 10px; /* Add some padding */
}
  
      /* Style for date and time input fields */
      #pickup-date-time, #dropoff-date-time {
         width: 250px;
         padding: 10px;
         font-size: 16px;
         border: 1px solid #ccc;
         border-radius: 4px;
         margin: 10px 0;
      }

      /* Ensure pickers are properly displayed */
      .flatpickr-calendar {
         z-index: 1000 !important; /* Ensure the calendar appears on top of other elements */
      }

      /* Optional: Style labels for better alignment */
      form label {
         display: block;
         margin-bottom: 5px;
         font-weight: bold;
      }

      /* Add padding to form for better layout */
      form {
         margin: 20px;
      }

	body {
    background-color: #f4f4f4; /* Background color for contrast */
}

.team__card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team__card:hover {
    transform: translateY(-5px);
}

.team__img_block {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0; /* Divider between image and content */
}

.team_img {
    width: 100%;
    height: auto;
    transition: transform 0.5s; /* Image zoom effect */
}

.team__card:hover .team_img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.educate-btn {
    display: inline-block;
    margin-top: 15px;
    background-color: #007bff; /* Button color */
    color: #fff; /* Button text color */
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.educate-btn:hover {
    background-color: #0056b3; /* Darker shade on hover */
    transform: translateY(-2px); /* Button lift effect */
}

.date-container, .time-container {
    background: #ffffff; /* Light background for date/time selection */
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

h3, h4 {
    color: #333; /* Title color */
}

h3.text-center {
    font-size: 2rem; /* Larger font for main titles */
}

h4.text-center {
    font-size: 1.5rem; /* Slightly smaller for subtitles */
}

.btn {
    border-radius: 5px;
    padding: 10px 15px;
    transition: background-color 0.3s;
}

.btn-secondary {
    background-color: #6c757d; /* Secondary button color */
}

.btn-secondary:hover {
    background-color: #5a6268; /* Darker shade on hover */
}

.btn-primary {
    background-color: #007bff; /* Primary button color */
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker shade on hover */
}
	.scroll-container {
    overflow-x: auto;
    white-space: nowrap; /* Keep items in a single line */
    padding: 10px 0;
}

.scrolling-container {
    display: flex; /* Create a flex container */
    overflow-x: scroll; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for touch devices */
    padding: 10px 0;
}

.date-card, .time-card {
    background: #ffffff; /* Card background */
    border: 1px solid #e0e0e0; /* Border for the card */
    border-radius: 8px; /* Rounded corners */
    padding: 15px; /* Inner padding */
    margin: 0 10px; /* Space between cards */
    text-align: center; /* Center the text */
    cursor: pointer; /* Pointer on hover */
    transition: transform 0.2s, box-shadow 0.2s; /* Smooth transition for effects */
    min-width: 10px; /* Minimum width for cards */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow for a floating effect */
}

.date-card:hover, .time-card:hover {
    transform: translateY(-3px); /* Lift effect on hover */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.selected {
    background: #007bff; /* Highlight color for selected card */
    color: white; /* Text color for selected card */
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.5); /* Shadow for selected card */
}