/* Custom Form Styles for Ticket Search */

/* Main Content Background */
.main-content {
    position: relative;
    width: 100%;
}

.main-content-background {
    background-color: #0E1D48;
    min-height: 100vh;
    padding: 40px 0;
    width: 100%;
    position: relative;
}

/* Mobile Image Background - Desktop */
.mobile-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.1;
}

/* Ensure content is above background */
.container {
    position: relative;
    z-index: 10;
}

.searchVoyage {
    position: relative;
    z-index: 15;
}

/* Navy Blue Button Styles */
.btn-navy {
    background-color: #0E1D48 !important;
    border-color: #0E1D48 !important;
    color: #ffffff !important;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background-color: #1a2d5a !important;
    border-color: #1a2d5a !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(14, 29, 72, 0.3);
}

.btn-navy:active,
.btn-navy:focus {
    background-color: #0a1530 !important;
    border-color: #0a1530 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(14, 29, 72, 0.25);
}

.btn-check:checked + .btn-navy {
    background-color: #0E1D48 !important;
    border-color: #0E1D48 !important;
    color: #ffffff !important;
}

/* Custom Form Controls */
.form-control-custom {
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control-custom:focus {
    border-color: #0E1D48;
    box-shadow: 0 0 0 0.2rem rgba(14, 29, 72, 0.15);
    background-color: #ffffff;
}

.form-select-custom {
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-select-custom:focus {
    border-color: #0E1D48;
    box-shadow: 0 0 0 0.2rem rgba(14, 29, 72, 0.15);
    background-color: #ffffff;
}

/* Text Colors */
.text-navy {
    color: #0E1D48 !important;
    font-weight: 600;
}

/* Form Labels */
.form-label.fw-bold {
    color: #0E1D48;
    font-size: 13px;
    margin-bottom: 6px;
}

/* Search Voyage Container */
.searchVoyage {
    background-color: #42c7e7;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf0;
    margin: 15px 0;
}

/* Trip Type Selector */
.trip-type-selector {
    display: flex;
    gap: 0;
}

.trip-type-selector .btn {
    border-radius: 0;
    margin-right: -1px;
    border: 2px solid #0E1D48;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.trip-type-selector .btn:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.trip-type-selector .btn:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-right: 0;
}

/* Default state - white background with navy text */
.trip-type-selector .btn {
    background-color: #ffffff !important;
    color: #0E1D48 !important;
    border-color: #0E1D48 !important;
}

/* Active/checked state - navy background with white text */
.btn-check:checked + .btn,
.trip-type-selector .btn.active {
    background-color: #0E1D48 !important;
    color: #ffffff !important;
    border-color: #0E1D48 !important;
}

/* Hover state */
.trip-type-selector .btn:hover {
    background-color: #f8f9fa !important;
    color: #0E1D48 !important;
    transform: translateY(-1px);
}

/* Bilet Arama Sonuçları Stilleri */
.search-results-container {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 32px rgba(14, 29, 72, 0.1) !important;
}

.text-navy {
    color: #0E1D48 !important;
}

.text-navy-light {
    color: #2C4A7A !important;
}

.expedition-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Gidiş-dönüş modu için yan yana layout */
.expedition-list-roundtrip {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Gidiş-dönüş modunda expedition card'ları daha kompakt yap */
.expedition-list-roundtrip .expedition-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid #e8ecf7;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(14, 29, 72, 0.06);
}

.expedition-list-roundtrip .expedition-card:hover {
    border-color: #0E1D48;
    box-shadow: 0 6px 24px rgba(14, 29, 72, 0.12);
    transform: translateY(-2px);
}

/* Gidiş-dönüş modunda başlıkları daha küçük yap */
.expedition-list-roundtrip .expedition-location h6 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.expedition-list-roundtrip .expedition-location .time {
    font-size: 0.9rem;
    font-weight: 600;
}

.expedition-list-roundtrip .expedition-location .port-name {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Gidiş-dönüş modunda buton ve capacity bilgilerini küçült */
.expedition-list-roundtrip .expedition-select-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.expedition-list-roundtrip .capacity-item {
    font-size: 0.8rem;
}

.expedition-list-roundtrip .capacity-item i {
    width: 14px;
    margin-right: 6px;
}

/* Bootstrap grid system için ekstra güvence */
#departureExpeditions.row > .col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    float: left !important;
    display: inline-block !important;
}

/* Gidiş-dönüş modunda parent container */
#departureExpeditions.roundtrip-mode {
    display: flex !important;
    gap: 1rem !important;
    align-items: flex-start !important;
    width: 100% !important;
}

#departureExpeditions.roundtrip-mode > div {
    flex: 1 !important;
    min-width: 0 !important;
}

/* Yan yana kolonlar için padding */
.pe-2 {
    padding-right: 0.5rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.expedition-list-roundtrip::-webkit-scrollbar {
    width: 6px;
}

.expedition-list-roundtrip::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.expedition-list-roundtrip::-webkit-scrollbar-thumb {
    background: #0E1D48;
    border-radius: 3px;
}

.expedition-list-roundtrip::-webkit-scrollbar-thumb:hover {
    background: #2C4A7A;
}

.expedition-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid #e8ecf7;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(14, 29, 72, 0.08);
}

.expedition-card:hover {
    border-color: #0E1D48;
    box-shadow: 0 8px 30px rgba(14, 29, 72, 0.15);
    transform: translateY(-3px);
}

.expedition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0E1D48, #2C4A7A);
    transition: width 0.3s ease;
}

.expedition-card:hover::before {
    width: 8px;
}

.expedition-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.expedition-route {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.expedition-location {
    text-align: center;
    flex: 1;
}

.expedition-location h6 {
    color: #0E1D48;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

.expedition-location .port-name {
    color: #6c757d;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 500;
}

.expedition-location .time {
    color: #2C4A7A;
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecf7 100%);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.expedition-arrow {
    color: #0E1D48;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
}

.expedition-arrow .expedition-duration {
    color: #6c757d;
    font-size: 12px;
    font-weight: 600;
    background: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid #e8ecf7;
}

.expedition-arrow .ferry-name {
    color: #0E1D48;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    max-width: 120px;
    line-height: 1.2;
}

.expedition-status {
    text-align: right;
    padding-left: 20px;
}

.expedition-status.available .status-indicator {
    color: #28a745;
}

.expedition-status.unavailable .status-indicator {
    color: #dc3545;
}

.expedition-status .status-indicator {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.expedition-status .company-name {
    color: #0E1D48;
    font-weight: 600;
    font-size: 14px;
}

.expedition-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #e8ecf7;
    margin-top: 20px;
}

.expedition-capacity .capacity-info {
    display: flex;
    gap: 20px;
}

.expedition-capacity .capacity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
}

.expedition-capacity .capacity-item i {
    color: #0E1D48;
    width: 16px;
}

.expedition-select-btn {
    background: linear-gradient(135deg, #0E1D48 0%, #2C4A7A 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 29, 72, 0.3);
}

.expedition-select-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, #2C4A7A 0%, #0E1D48 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 29, 72, 0.4);
}

.expedition-select-btn.disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.expedition-note {
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .expedition-card {
        padding: 20px;
    }
    
    .expedition-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .expedition-route {
        flex-direction: column;
        gap: 15px;
    }
    
    .expedition-arrow {
        transform: rotate(0deg);
        padding: 15px 0;
    }
    
    .expedition-arrow .ferry-name {
        transform: rotate(0deg);
        white-space: nowrap;
    }
    
    .expedition-status {
        text-align: center;
        padding-left: 0;
    }
    
    .expedition-details {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .expedition-capacity .capacity-info {
        justify-content: center;
    }
    
    .expedition-select-btn {
        width: 100%;
        padding: 15px;
    }
}

/* Gidiş-Dönüş Yan Yana Layout */
@media (min-width: 768px) {
    .expedition-list {
        max-height: 600px;
        overflow-y: auto;
        padding-right: 10px;
    }
    
    .expedition-list::-webkit-scrollbar {
        width: 6px;
    }
    
    .expedition-list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }
    
    .expedition-list::-webkit-scrollbar-thumb {
        background: #0E1D48;
        border-radius: 3px;
    }
    
    .expedition-list::-webkit-scrollbar-thumb:hover {
        background: #2C4A7A;
    }
}

/* Section Headers */
.text-navy-light {
    color: #2C4A7A !important;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8ecf7;
}

.text-navy-light i {
    color: #0E1D48;
    margin-right: 8px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Yeni Expedition Card Tasarımı */
.expedition-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid #e8ecf7;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(14, 29, 72, 0.08);
}

.expedition-card:hover {
    border-color: #0E1D48;
    box-shadow: 0 8px 30px rgba(14, 29, 72, 0.15);
    transform: translateY(-3px);
}

.expedition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0E1D48, #2C4A7A);
    transition: width 0.3s ease;
}

.expedition-card:hover::before {
    width: 8px;
}

.expedition-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.expedition-route {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.expedition-location {
    text-align: center;
    flex: 1;
}

.expedition-location h6 {
    color: #0E1D48;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

.expedition-location .port-name {
    color: #6c757d;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 500;
}

.expedition-location .time {
    color: #2C4A7A;
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecf7 100%);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.expedition-arrow {
    color: #0E1D48;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
}

.expedition-arrow .expedition-duration {
    color: #6c757d;
    font-size: 12px;
    font-weight: 600;
    background: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid #e8ecf7;
}

.expedition-arrow .ferry-name {
    color: #0E1D48;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    max-width: 120px;
    line-height: 1.2;
}

.expedition-status {
    text-align: right;
    padding-left: 20px;
}

.expedition-status.available .status-indicator {
    color: #28a745;
}

.expedition-status.unavailable .status-indicator {
    color: #dc3545;
}

.expedition-status .status-indicator {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.expedition-status .company-name {
    color: #0E1D48;
    font-weight: 600;
    font-size: 14px;
}

.expedition-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #e8ecf7;
    margin-top: 20px;
}

.expedition-capacity .capacity-info {
    display: flex;
    gap: 20px;
}

.expedition-capacity .capacity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
}

.expedition-capacity .capacity-item i {
    color: #0E1D48;
    width: 16px;
}

.expedition-select-btn {
    background: linear-gradient(135deg, #0E1D48 0%, #2C4A7A 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 29, 72, 0.3);
}

.expedition-select-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, #2C4A7A 0%, #0E1D48 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 29, 72, 0.4);
}

.expedition-select-btn.disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.expedition-note {
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .expedition-card {
        padding: 20px;
    }
    
    .expedition-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .expedition-route {
        flex-direction: column;
        gap: 15px;
    }
    
    .expedition-arrow {
        transform: rotate(0deg);
        padding: 15px 0;
    }
    
    .expedition-arrow .ferry-name {
        transform: rotate(0deg);
        white-space: nowrap;
    }
    
    .expedition-status {
        text-align: center;
        padding-left: 0;
    }
    
    .expedition-details {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .expedition-capacity .capacity-info {
        justify-content: center;
    }
    
    .expedition-select-btn {
        width: 100%;
        padding: 15px;
    }
}

/* Gidiş-Dönüş Yan Yana Layout */
@media (min-width: 768px) {
    .expedition-list {
        max-height: 600px;
        overflow-y: auto;
        padding-right: 10px;
    }
    
    .expedition-list::-webkit-scrollbar {
        width: 6px;
    }
    
    .expedition-list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }
    
    .expedition-list::-webkit-scrollbar-thumb {
        background: #0E1D48;
        border-radius: 3px;
    }
    
    .expedition-list::-webkit-scrollbar-thumb:hover {
        background: #2C4A7A;
    }
}

/* Section Headers */
.text-navy-light {
    color: #2C4A7A !important;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8ecf7;
}

.text-navy-light i {
    color: #0E1D48;
    margin-right: 8px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Yeni Expedition Card Tasarımı */
.expedition-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid #e8ecf7;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(14, 29, 72, 0.08);
}

.expedition-card:hover {
    border-color: #0E1D48;
    box-shadow: 0 8px 30px rgba(14, 29, 72, 0.15);
    transform: translateY(-3px);
}

.expedition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0E1D48, #2C4A7A);
    transition: width 0.3s ease;
}

.expedition-card:hover::before {
    width: 8px;
}

.expedition-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.expedition-route {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.expedition-location {
    text-align: center;
    flex: 1;
}

.expedition-location h6 {
    color: #0E1D48;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

.expedition-location .port-name {
    color: #6c757d;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 500;
}

.expedition-location .time {
    color: #2C4A7A;
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecf7 100%);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.expedition-arrow {
    color: #0E1D48;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
}

.expedition-arrow .expedition-duration {
    color: #6c757d;
    font-size: 12px;
    font-weight: 600;
    background: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid #e8ecf7;
}

.expedition-arrow .ferry-name {
    color: #0E1D48;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    max-width: 120px;
    line-height: 1.2;
}

.expedition-status {
    text-align: right;
    padding-left: 20px;
}

.expedition-status.available .status-indicator {
    color: #28a745;
}

.expedition-status.unavailable .status-indicator {
    color: #dc3545;
}

.expedition-status .status-indicator {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.expedition-status .company-name {
    color: #0E1D48;
    font-weight: 600;
    font-size: 14px;
}

.expedition-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #e8ecf7;
    margin-top: 20px;
}

.expedition-capacity .capacity-info {
    display: flex;
    gap: 20px;
}

.expedition-capacity .capacity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
}

.expedition-capacity .capacity-item i {
    color: #0E1D48;
    width: 16px;
}

.expedition-select-btn {
    background: linear-gradient(135deg, #0E1D48 0%, #2C4A7A 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 29, 72, 0.3);
}

.expedition-select-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, #2C4A7A 0%, #0E1D48 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 29, 72, 0.4);
}

.expedition-select-btn.disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.expedition-note {
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design Güncellemeleri */
@media (max-width: 768px) {
    .expedition-card {
        padding: 20px;
    }
    
    .expedition-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .expedition-route {
        flex-direction: column;
        gap: 15px;
    }
    
    .expedition-arrow {
        transform: rotate(0deg);
        padding: 15px 0;
    }
    
    .expedition-arrow .ferry-name {
        transform: rotate(0deg);
        white-space: nowrap;
    }
    
    .expedition-status {
        text-align: center;
        padding-left: 0;
    }
    
    .expedition-details {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .expedition-capacity .capacity-info {
        justify-content: center;
    }
    
    .expedition-select-btn {
        width: 100%;
        padding: 15px;
    }
}

/* Gidiş-Dönüş Yan Yana Layout */
@media (min-width: 768px) {
    .expedition-list {
        max-height: 600px;
        overflow-y: auto;
        padding-right: 10px;
    }
    
    .expedition-list::-webkit-scrollbar {
        width: 6px;
    }
    
    .expedition-list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }
    
    .expedition-list::-webkit-scrollbar-thumb {
        background: #0E1D48;
        border-radius: 3px;
    }
    
    .expedition-list::-webkit-scrollbar-thumb:hover {
        background: #2C4A7A;
    }
}
