/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
  }
  
  a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.2s ease;
  }
  
  a:hover {
    color: #004c99;
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Header Styles */
  header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo img {
    height: 40px;
  }
  
  .search-container {
    flex-grow: 1;
    margin: 0 20px;
  }
  
  .search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
  }
  
  .search-bar:focus-within {
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.2);
  }
  
  .search-bar input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 15px;
  }
  
  .search-bar button {
    background-color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
  }
  
  .search-bar button:hover {
    color: #0066cc;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
  }
  
  .become-seller {
    margin-right: 20px;
    padding: 10px 18px;
    border: 1px solid #0066cc;
    border-radius: 20px;
    color: #0066cc;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .become-seller:hover {
    background-color: #f0f7ff;
  }
  
  .become-seller.active {
    background-color: #0066cc;
    color: white;
  }
  
  .become-seller.active:hover {
    background-color: #0055aa;
  }
  
  .icon-buttons {
    display: flex;
  }
  
  .icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    margin-left: 15px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
  }
  
  .icon-btn:hover {
    color: #0066cc;
  }
  
  .icon-btn.cart {
    color:  var(--gradient-start);
  }
  
  .icon-btn.cart:hover {
    color:  var(--gradient-start);
  }
  
  /* Main Navigation */
  .main-nav {
    background-color:  var(--gradient-start);
    padding: 10px 0;
  }
  
  /* Breadcrumb */
  .breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
  }
  
  .breadcrumb a {
    color: #666;
    margin-right: 5px;
  }
  
  .breadcrumb a:hover {
    color: #0066cc;
  }
  
  .breadcrumb span {
    color: #999;
  }
  
  /* Listing Container */
  .listing-container {
    display: flex;
    gap: 30px;
    margin: 20px 0 60px;
  }
  
  /* Listing Sidebar */
  .listing-sidebar {
    flex: 0 0 280px;
  }
  
  .sidebar-sticky {
    position: sticky;
    top: 100px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
  }
  
  .listing-sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
  }
  
  .listing-steps li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
  }
  
  .listing-steps li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 16px;
  }
  
  .listing-steps li.completed {
    color:  var(--gradient-start);
  }
  
  .listing-steps li.active {
    color: #0066cc;
    font-weight: bold;
  }
  
  .listing-help {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eee;
  }
  
  .listing-help h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #333;
  }
  
  .listing-help p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .help-btn {
    display: block;
    background-color: #0066cc;
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 102, 204, 0.2);
  }
  
  .help-btn:hover {
    background-color: #0055aa;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
  }
  
  .listing-save {
    margin-top: 25px;
  }
  
  .save-btn {
    display: block;
    width: 100%;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .save-btn:hover {
    background-color: #e5e5e5;
    border-color: #ccc;
  }
  
  /* Listing Content */
  .listing-content {
    flex: 1;
  }
  
  .listing-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-header h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #333;
  }
  
  .section-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Inspection Notice */
  .inspection-notice {
    background-color: #e1edff;
    border-left: 4px solid  var(--gradient-start);
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.1);
  }
  
  .notice-icon {
    color:  var(--gradient-start);
    font-size: 24px;
    margin-right: 20px;
  }
  
  .notice-icon {
    color:  var(--gradient-start);
    font-size: 24px;
    margin-right: 20px;
    margin-top: 2px;
  }
  
  .notice-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
  }
  
  .notice-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Location Tabs */
  .location-tabs {
    margin-bottom: 30px;
  }
  
  .tab-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 5px;
  }
  
  .tab-btn:hover {
    color: #0066cc;
  }
  
  .tab-btn.active {
    color: #0066cc;
    border-bottom-color: #0066cc;
  }
  
  .add-location-btn {
    margin-left: auto;
    background: none;
    border: 1px dashed #0066cc;
    color: #0066cc;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
  }
  
  .add-location-btn:hover {
    background-color: #f0f7ff;
  }
  
  .tab-content {
    position: relative;
  }
  
  .tab-pane {
    display: none;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  /* Empty Location */
  .empty-location {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 2px dashed #ddd;
  }
  
  .empty-icon {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
  }
  
  .empty-location h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .empty-location p {
    color: #666;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .setup-location-btn {
    display: inline-block;
  }
  
  /* Form Styles */
  .form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
  }
  
  .form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .form-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-group.half {
    flex: 1;
  }
  
  .form-group.third {
    flex: 1;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
  }
  
  .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    outline: none;
  }
  
  textarea.form-control {
    resize: vertical;
    min-height: 100px;
  }
  
  select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
  }
  
  /* Location Search */
  .location-search-container {
    position: relative;
  }
  
  .location-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  
  .location-search-btn:hover {
    color: #0066cc;
  }
  
  /* Map Container */
  .map-container {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
  }
  
  #location-map {
    height: 300px;
    width: 100%;
  }
  
  .map-actions {
    display: flex;
    padding: 10px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
  }
  
  .map-action-btn {
    background: none;
    border: none;
    color: #0066cc;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin-right: 10px;
  }
  
  .map-action-btn:hover {
    background-color: #e5e5e5;
  }
  
  /* Time Templates */
  .time-templates {
    margin-bottom: 25px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
  }
  
  .time-templates h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .template-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .template-btn {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  
  .template-btn i {
    margin-right: 8px;
    color: #0066cc;
  }
  
  .template-btn:hover {
    border-color: #0066cc;
    background-color: #f0f7ff;
  }
  
  /* Selected Slots Summary */
  .selected-slots-summary {
    margin-bottom: 25px;
  }
  
  .selected-slots-summary h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .selected-slots-container {
    margin-bottom: 15px;
  }
  
  .selected-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f0f7ff;
    border-radius: 6px;
    margin-bottom: 10px;
    border-left: 4px solid #0066cc;
  }
  
  .slot-info {
    display: flex;
    align-items: center;
  }
  
  .slot-info i {
    color: #0066cc;
    font-size: 20px;
    margin-right: 15px;
  }
  
  .slot-details {
    display: flex;
    flex-direction: column;
  }
  
  .slot-date {
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .slot-time {
    color: #666;
    font-size: 14px;
  }
  
  .slot-remove-btn {
    background: none;
    border: none;
    color:  var(--gradient-start);
    cursor: pointer;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }
  
  .slot-remove-btn:hover {
    opacity: 1;
  }
  
  .manage-slots-btn {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .manage-slots-btn i {
    margin-right: 8px;
  }
  
  .manage-slots-btn:hover {
    background-color: #e5e5e5;
  }
  
  /* Time Slots Panel */
  .time-slots-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    overflow: hidden;
  }
  
  .panel-header {
    background-color: #0066cc;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .panel-header h3 {
    margin: 0;
    font-size: 18px;
  }
  
  .close-panel-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }
  
  .close-panel-btn:hover {
    opacity: 1;
  }
  
  .panel-body {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(90vh - 60px);
  }
  
  .panel-body p {
    margin-bottom: 20px;
    color: #333;
  }
  
  .location-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .location-info i {
    color:  var(--gradient-start);
    font-size: 18px;
    margin-right: 10px;
  }
  
  /* Calendar Container */
  .calendar-container {
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .calendar-header {
    background-color: #f0f7ff;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
  }
  
  .calendar-header h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
  }
  
  .calendar-header h4 i {
    margin-right: 10px;
    color: #0066cc;
  }
  
  .calendar-wrapper {
    padding: 20px;
  }
  
  /* Time Selection */
  .time-selection {
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 20px;
  }
  
  .time-selection h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
  }
  
  .time-selection h4 i {
    margin-right: 10px;
    color: #0066cc;
  }
  
  .time-range-container {
    display: flex;
    align-items: flex-end;
    gap: 15px;
  }
  
  .time-range-group {
    flex: 1;
  }
  
  .time-range-divider {
    margin-bottom: 12px;
    color: #666;
  }
  
  .add-time-range-btn {
    background-color:  var(--gradient-start);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 0;
    height: 45px;
  }
  
  .add-time-range-btn:hover {
    background-color:  var(--gradient-end);
  }
  
  /* Selected Times */
  .selected-times {
    margin-bottom: 30px;
  }
  
  .selected-times h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .time-slots {
    max-height: 300px;
    overflow-y: auto;
  }
  
  .time-slot {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
    background-color: white;
  }
  
  .time-slot:hover {
    background-color: #f9f9f9;
  }
  
  .date {
    flex: 2;
    font-weight: 500;
  }
  
  .time {
    flex: 2;
    color: #666;
  }
  
  .slot-actions {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }
  
  .slot-edit-btn,
  .slot-delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  
  .slot-edit-btn {
    color: #0066cc;
  }
  
  .slot-edit-btn:hover {
    background-color: #e5f1ff;
  }
  
  .slot-delete-btn {
    color:  var(--gradient-start);
  }
  
  .slot-delete-btn:hover {
    background-color: #ffebee;
  }
  
  /* Panel Actions */
  .panel-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  
  /* Preview Section */
  .preview-section {
    background-color: #f9f9f9;
  }
  
  .preview-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .preview-header {
    background-color: #0066cc;
    color: white;
    padding: 15px 20px;
  }
  
  .preview-header h4 {
    margin: 0;
    font-size: 16px;
  }
  
  .preview-body {
    padding: 20px;
  }
  
  .preview-body p {
    margin-bottom: 20px;
    color: #333;
    font-size: 14px;
  }
  
  .preview-location {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .preview-location i {
    color:  var(--gradient-start);
    font-size: 16px;
    margin-right: 10px;
  }
  
  .preview-collection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .preview-label {
    display: flex;
    align-items: center;
  }
  
  .preview-label i {
    margin-right: 10px;
    color: #0066cc;
  }
  
  .preview-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
  }
  
  .preview-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .preview-slot {
    flex: 1 0 calc(50% - 10px);
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
    min-width: 200px;
  }
  
  .preview-date {
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .preview-time {
    color: #666;
    font-size: 14px;
  }
  
  /* Form Actions */
  .form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
  }
  
  .btn-primary {
    background-color:  var(--gradient-start);
    color: white;
    border: none;
    box-shadow: 0 2px 5px rgba(204, 0, 51, 0.2);
  }
  
  .btn-primary:hover {
    background-color: #a30029;
    box-shadow: 0 4px 8px rgba(204, 0, 51, 0.3);
  }
  
  .btn-primary i {
    margin-left: 8px;
  }
  
  .btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
  }
  
  .btn-secondary:hover {
    background-color: #e5e5e5;
  }
  
  .btn-secondary i {
    margin-right: 8px;
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
  }
  
  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #ccc;
  }
  
  .footer-section ul li a:hover {
    color: #fff;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .social-icons a {
    color: #ccc;
    font-size: 20px;
  }
  
  .social-icons a:hover {
    color: #fff;
  }
  
  .newsletter p {
    margin-bottom: 10px;
    color: #ccc;
  }
  
  .newsletter-form {
    display: flex;
  }
  
  .newsletter-form input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 3px 0 0 3px;
  }
  
  .newsletter-form button {
    background-color:  var(--gradient-start);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
  }
  
  .copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .copyright p {
    color: #ccc;
    font-size: 14px;
  }
  
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }
  
  /* Flatpickr Customization */
  .flatpickr-day.selected,
  .flatpickr-day.startRange,
  .flatpickr-day.endRange,
  .flatpickr-day.selected.inRange,
  .flatpickr-day.startRange.inRange,
  .flatpickr-day.endRange.inRange,
  .flatpickr-day.selected:focus,
  .flatpickr-day.startRange:focus,
  .flatpickr-day.endRange:focus,
  .flatpickr-day.selected:hover,
  .flatpickr-day.startRange:hover,
  .flatpickr-day.endRange:hover,
  .flatpickr-day.selected.prevMonthDay,
  .flatpickr-day.startRange.prevMonthDay,
  .flatpickr-day.endRange.prevMonthDay,
  .flatpickr-day.selected.nextMonthDay,
  .flatpickr-day.startRange.nextMonthDay,
  .flatpickr-day.endRange.nextMonthDay {
    background: #0066cc;
    border-color: #0066cc;
  }
  
  .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
  .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)),
  .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)) {
    box-shadow: -10px 0 0 #0066cc;
  }
  
  /* Notifications */
  .navbar{
    z-index: 999;
  }
  .notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 15px 20px;
    z-index: 1000;
    max-width: 350px;
    animation: slideIn 0.3s forwards;
    border-left: 4px solid var(--gradient-start);
  }
  
  .notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: 15px;
    color: #666;
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideOut {
    from {
      transform: translateX(0);
      opacity: 1;
    }
    to {
      transform: translateX(100%);
      opacity: 0;
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .listing-container {
      flex-direction: column;
    }
  
    .listing-sidebar {
      flex: 0 0 100%;
      margin-bottom: 30px;
    }
  
    .sidebar-sticky {
      position: static;
    }
  
    .preview-slots {
      flex-direction: column;
    }
  
    .preview-slot {
      flex: 1 0 100%;
    }
  }
  
  @media (max-width: 768px) {
    .header-container {
      flex-wrap: wrap;
    }
  
    .logo {
      order: 1;
    }
  
    .header-actions {
      order: 2;
    }
  
    .search-container {
      order: 3;
      width: 100%;
      margin: 15px 0 0;
    }
  
    .time-range-container {
      flex-direction: column;
      gap: 10px;
    }
  
    .time-range-divider {
      display: none;
    }
  
    .add-time-range-btn {
      width: 100%;
    }
  
    .time-slot {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .date,
    .time {
      margin-bottom: 10px;
    }
  
    .slot-actions {
      align-self: flex-end;
    }
  
    .form-actions {
      flex-direction: column;
      gap: 15px;
    }
  
    .btn-secondary,
    .btn-primary {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (max-width: 576px) {
    .listing-section {
      padding: 20px 15px;
    }
  
    .inspection-notice {
      flex-direction: column;
    }
  
    .notice-icon {
      margin-bottom: 10px;
    }
  
    .tab-header {
      overflow-x: auto;
      white-space: nowrap;
      padding-bottom: 10px;
    }
  
    .tab-btn {
      padding: 10px 15px;
    }
  
    .add-location-btn {
      padding: 6px 10px;
      font-size: 12px;
    }
  }
  