.font_size{
    font-size: 26px;
    font-weight: 700;
}
.font_size_2{
    font-size: 20px;
    font-weight: 700;
}
.font_size_3{
    font-size: 17px;
    font-weight: 400;
    color: rgb(104, 112, 116);
}
.trip_time_font_icons {
	font-size: 22px;
	text-align: center;
	font-weight: 700;
    margin-right: 6px;
}
.abdvb {
	width: 100px;
}
.taka {
    font-weight: bold;
    font-size: 17px;
}
.top-dotted-border {
	border-top: 2.5px dotted #ccc;
	padding-top: 3px;
}
.ticket-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap; 
}
.ticket-tags .tag {
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    padding: 4px 10px;
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    background: #fff;
    color: #555;
    line-height: 1;
    transition: all 0.2s ease;    
}
.ticket-tags .tag i {
    margin-right: 5px;
    font-size: 12px;
}
.ticket-tags .tag:hover {
    border-color: #aaa;
    background: #f7f7f7;
}
.ticket-tags .tag.ac {
    border-color: #5bc0de;
    color: #31b0d5;
}
.ticket-tags .tag.business {
    border-color: #f0ad4e;
    color: #ec971f;
}
.ticket-tags .tag.open_seats {
    border-color: #d9534f;
    color: #d9534f;
    margin-left: auto;
}
.ticket-tags .tag.active {
    background: #337ab7;
    color: #fff;
    border-color: #2e6da4;
}
.ticket-tags .tag:last-child {
    margin-right: 0;
}

/* Custom Search Form Box */
.custom-search-box-wrapper {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px 20px 0px 20px;
    margin-top: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: left;
}

.custom-search-title {
    color: #474694;
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #6bca7b;
    display: inline-block;
    padding-bottom: 5px;
}

.custom-search-form {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.custom-search-form .form-group {
    margin-bottom: 0; 
    flex: 1;
}

.form-control-custom {
    width: 100% !important;
    height: 42px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.075);
    box-sizing: border-box;
    margin: 0;
}

.btn-search-custom {
    background-color: #6bca7b;
    color: #fff;
    border: 1px solid transparent;
    height: 42px;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    box-sizing: border-box;
    margin: 20px 0px 30px 0px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-search-custom:hover {
    background-color: #55a863;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .custom-search-form {
        flex-direction: column;
        align-items: stretch;
    }
    .custom-search-form .form-group {
        width: 100%;
        margin-bottom: 15px;
    }
    .btn-search-custom {
        width: 100%;
    }
    .coach-name-max-with{
        word-break: break-all;
        max-width: 252px;
    }
}

.date-field {
	height: 41px !important;
}
/* Filter Sidebar Styles */
.filter-sidebar {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-top: 10px;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #474694;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-link-btn {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    color: #555;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    text-decoration: none !important;
    transition: all 0.3s;
    cursor: pointer;
    text-transform: capitalize;
}

.filter-link-btn:hover {
    background: #f7f7f7;
    border-color: #aaa;
    color: #333;
}

.filter-link-btn.active {
    background: #6bca7b;
    color: #fff;
    border-color: #6bca7b;
    box-shadow: 0 2px 4px rgba(107, 202, 123, 0.3);
}

.filter-link-btn.date-link {
    background: #fdfdfd;
}

.boarding-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.boarding-point-item {
    margin-bottom: 8px;
}

.boarding-point-item label {
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.boarding-point-item input[type="radio"] {
    margin: 0;
}

.reset-filter-link {
    color: #d9534f;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.reset-filter-link:hover {
    color: #c9302c;
}


.btn-view-seats {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin: 0;

    background: linear-gradient(45deg, #31b0d5, #269abc);
    color: #fff;
    padding: 9px 0px 7px 6px;
    font-size: 12px;

    border-radius: 30px !important;
    transition: all 0.25s ease;
}
.btn-view-seats i {
    font-size: 12px;
}
.btn-view-seats:hover {
    background: linear-gradient(45deg, #269abc, #31b0d5);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}
.btn-view-seats:active {
    transform: scale(0.96);
}
@media (max-width: 768px) {
    .btn-view-seats {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* ===========Trip button=============  */
.trip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto; 
  padding: 5px 10px; 
  margin-top: 6px; 
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px; 
  font-weight: 500;
  line-height: 1.4; 
  color: #fff;
  background-color: #6bca7b;
  border-radius: 12px !important; 
  cursor: pointer;
  user-select: none;
  text-decoration: none; 
  transition: all 0.2s ease-in-out;
  float: right;
}

.trip-btn i {
  margin-right: 5px;
  font-size: 13px;
}

.trip-btn:hover {
  background-color: #57b867;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.trip-btn:active {
  background-color: #4da85c;
  transform: scale(0.97);
}

.trip-btn.sm {
  padding: 3px 8px;
  font-size: 12px;
}

.trip-btn.sm i {
  font-size: 12px;
  margin-right: 4px;
}

.trip-btn.info {
  background-color: #5bc0de !important;
}

.trip-btn.info:hover,
.trip-btn.info:focus {
  background-color: #46b8da !important;
}

.trip-btn.warning {
  background-color: #f0ad4e !important;
}

.trip-btn.warning:hover,
.trip-btn.warning:focus {
  background-color: #ec971f !important;
}

.trip-btn.danger {
  background-color: #d9534f;
}

.trip-btn.danger:hover 
.trip-btn.danger:focus {
  background-color: #c9302c;
}
/* ===========Trip button Ends=============  */