body {
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--rich-navy) 100%); */
    background: var(--bg);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.mobile-container {
    max-width: 23.438rem;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    position: relative;
    /* box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1); */
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.header {
    padding: 1rem 1.25rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-contrast);
    font-weight: bold;
}

.brand-text {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.125rem;
}

.powered-by {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-left: auto;
}

.trip-id {
    font-size: 0.75rem;
    color: var(--text-primary);
    margin-top: 0.25rem;
    padding-left: 0.75rem;
}

.content {
    padding: 1.25rem;
    padding-top: 0;
}

.status-section {
    margin-bottom: 1.5rem;
}

.status-item {
    display: flex;
    flex-direction: column;
    padding: 0.375rem 0;
    padding-left: 0.75rem;
    position: relative;
}

.status-header::before {
    content: '';
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: var(--inactive);
    position: absolute;
    left: -1.25rem;
    top: 0.3125rem;
}

.status-item::before {
    content: '';
    width: 0.125rem;
    height: 100%;
    background: var(--inactive);
    position: absolute;
    left: -0.25rem;
    top: 1.25rem;
}

.status-item:last-child::before {
    display: none;
}

.active .status-header::before,
.active.status-item::before {
    background: var(--secondary);
}

.status-header {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    position: relative;
}

.inactive .status-text {
    color: var(--inactive);
}

.status-icon {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
}

.active .status-icon.completed {
    background: var(--secondary);
}

.status-icon.completed {
    background: var(--inactive);
    color: var(--bg);
}

.status-text {
    flex: 1;
    font-size: 0.875rem;
}

.status-text.completed {
    color: var(--active);
}

.status-text.active {
    color: var(--secondary);
}

.trip-card {
    background: var(--cards);
    border-radius: 0.5rem;
    padding: 0.625rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.08);
}

.trip-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.trip-title {
    color: var(--secondary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.trip-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.status-section .flight-info {
    background: var(--bg);
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1rem 0;
}

.flight-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.airport {
    text-align: center;
    flex: 1;
}

.airport-code {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--text-primary);
}

.airport-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.swipe-instruction {
    background: var(--secondary);
    color: var(--text-contrast);
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.driver-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.driver-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.driver-client-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.driver-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
}

.clickable-image {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clickable-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

.driver-name {
    color: var(--text-primary);

    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.driver-status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;

    font-weight: 600;
    font-size: 0.75rem;
    white-space: nowrap;
}

.driver-status-badge.en-route {
    background: rgba(251, 140, 0, 0.3);
    color: #fb8c00;
}

.driver-status-badge.assigned {
    background: rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.driver-status-badge.arrived {
    background: rgba(110, 212, 190, 0.3);
    color: #6ed4be;
}

.vehicle-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.license-plate {
    background: #fb8c00;
    background: url(../images/license.svg) no-repeat center center;
    color: var(--text-contrast);
    width: 5.625rem;
    height: 1.375rem;
    padding-right: 0.25rem;
    text-align: right;
    border-radius: 0.25rem;
    font-family: 'UKNumberPlate', monospace;
    font-size: 1rem;
    font-weight: normal;
}

.vehicle-color-badge {
    background: #000000;
    color: var(--text-contrast);
    padding: 0.375rem 0.75rem;
    border-radius: 0.75rem;

    font-weight: 600;
    font-size: 0.875rem;
}

.vehicle-logo {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-section .vehicle-model {
    border: 0.0625rem solid #ecf0f1;
    padding: 0.375rem 0.75rem;
    border-radius: 0.75rem;

    font-size: 0.875rem;
    color: var(--text-primary);
}

/* Driver Note */
.driver-note {
    background: rgba(251, 140, 0, 0.3);
    color: #fb8c00;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    margin: 0.5rem 0;

    font-size: 0.75rem;
}

.note-label {
    font-weight: 400;
}

/* Location Cards */
.location-cards {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
    position: relative;
}

.location-image {
    flex: 1;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
}

.location-photo {
    width: 100%;
    height: 12.000rem;
    object-fit: cover;
    border-radius: 0.75rem;
}

.location-timestamp {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(110, 212, 190, 0.5);
    color: var(--text-contrast);
    padding: 0.25rem 0.5rem;
    border-radius: 0.75rem;

    font-weight: 600;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.live-location-card {
    flex: 1;
    background: linear-gradient(135deg, #6ed4be66 0%, transparent 100%);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 12.000rem;
    padding: 0.75rem;
}

.live-location-btn {
    background: #6ed4be;
    color: var(--text-contrast);
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;

    font-weight: 600;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.05);
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.live-location-btn:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 0.5rem rgba(0, 0, 0, 0.1);
    color: var(--text-contrast);
    text-decoration: none;
}

.live-location-btn:visited {
    color: var(--text-contrast);
}

.live-location-btn.disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

.live-location-btn.disabled:hover {
    transform: none;
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.05);
}

.location-name {

    font-size: 0.625rem;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.2;
    opacity: 0.8;
}

/* Driver Notes Card */
.driver-notes-card {
    border-radius: 1rem;
    background: rgba(251, 140, 0, 0.30);
    box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.05);
    display: flex;
    padding: 0.5rem 1rem;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    color: #FB8C00;
    font-size: 0.75rem;
}

/* Arrival Images */
.arrival-images {
    background: var(--cards);
    border-radius: 0.75rem;
    padding: 0.75rem;
    margin: 0.5rem 0;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

.images-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;

    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-primary);
}

.images-header i {
    color: #6ed4be;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
    gap: 0.5rem;
}

.arrival-photo {
    width: 100%;
    height: 5.000rem;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.arrival-photo:hover {
    transform: scale(1.05);
}

.location-card {
    background: var(--secondary);
    color: var(--text-contrast);
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.payment-section {
    margin: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.payment-section h6 {

    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.fee-item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(251, 140, 0, 0.3);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, 0.05);
    height: 2.250rem;
}

.fee-item-card.total {
    background: #fb8c00;
    color: #ffffff;
    font-weight: 600;
}

.fee-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fee-icon {
    width: 1.188rem;
    height: 1.188rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.fee-item-card.total .fee-icon {
    color: #ffffff;
}

.fee-description {
    font-weight: 400;
    font-size: 0.75rem;
    color: #fb8c00 !important;
}

.fee-item-card.total .fee-description {
    color: #ffffff !important;
    font-weight: 400;
}

.fee-amount {

    font-weight: 600;
    font-size: 1rem;
    color: #fb8c00;
}

.fee-item-card.total .fee-amount {
    color: #ffffff;
}

.no-extra-fees {
    text-align: center;
    padding: 1.25rem;
    color: var(--text-secondary);
}

.payment-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-pay-now {
    flex: 1;
    background: #6ed4be;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;

    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, 0.05);
    cursor: pointer;
    height: 2.063rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-apple-pay {
    flex: 1;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;

    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    height: 2.063rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1875rem;
}

.btn-pay-now:hover {
    background: #5bc2a8;
}

.btn-apple-pay:hover {
    background: #333333;
}

.btn-action {
    background: var(--secondary);
    color: var(--text-contrast);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 1.5625rem;
    box-shadow: 0 0.25rem 0.75rem rgba(110, 212, 190, 0.3);
}

.btn-action.primary {
    background: var(--accents);
    box-shadow: 0 0.25rem 0.75rem rgba(251, 140, 0, 0.3);
}

.chat-fab {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3.500rem;
    height: 3.500rem;
    background: var(--accents);
    border-radius: 50%;
    border: none;
    color: var(--text-contrast);
    font-size: 1.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(251, 140, 0, 0.3);
    z-index: 1001;
}

.trip-details {
    background: var(--bg);
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1rem 0;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-icon {
    width: 2rem;
    height: 2rem;
    background: var(--cards);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

@media (max-width: 375px) {
    .mobile-container {
        max-width: 100%;
    }
}

/* Figma Design Implementation - Trip Confirmation Card */
.date-time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.date-item,
.time-item {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 0.375rem;
}

.date-item i,
.time-item i {
    font-size: 0.875rem;
    color: var(--text-primary);
    width: 0.875rem;
}

.date-text,
.time-text {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-contrast);
}

.divider {
    height: 0.063rem;
    background: #E5E5E5;
    margin: 1rem 0;
}

.locations-details-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.locations-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.location-item {
    display: flex;
    align-items: start;
    gap: 0.25rem;
    flex: 1;
}

.location-item svg {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
    min-height: 1.125rem;
}

.locations-section {
    border-right: 1px solid #E5E5E5;
    padding-right: 0.5rem;
}

.pickup-icon {
    color: #FF9500;
    font-size: 0.5rem;
}

.dropoff-icon {
    color: #FF3B30;
    font-size: 0.75rem;
}

.location-text {

    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.details-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    padding: 0 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.detail-item i {
    font-size: 0.75rem;
    color: var(--primary);
    width: 1rem;
}

.detail-text {

    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-primary);
}

.services-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.service-item i {
    font-size: 0.75rem;
    color: var(--primary);
    width: 1rem;
}

.service-text {

    font-weight: 600;
    font-size: 0.75rem;
    color: var(--primary);
    line-height: 0.625rem;
}

/* Action Buttons - Figma Style */
.action-buttons {
    display: flex;
    gap: 0.25rem;
}

.btn-action {
    flex: 1;
    padding: 0.5rem 0rem;
    border-radius: 1rem;
    border: none;

    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-action.secondary {
    background: var(--cards);
    color: var(--secondary);
    border: 0.0625rem solid var(--secondary);
    box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, 0.05);
}

.btn-action.primary {
    background: var(--secondary);
    color: var(--text-contrast);
    box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, 0.05);
}

.btn-action:hover {
    transform: translateY(-0.0625rem);
    box-shadow: 0rem 0.375rem 0.5rem 0rem rgba(0, 0, 0, 0.1);
}

/* Modal Styling */
.modal-content {
    border-radius: 1rem;
    border: none;
    box-shadow: 0rem 0.5rem 1.5rem 0rem rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 0.0625rem solid #E5E5E5;
    padding: 1.25rem 1.5rem 1rem;
}

.modal-title {

    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.modal-body {
    padding: 1.25rem 1.5rem;
}

.modal-footer {
    border-top: 0.0625rem solid #E5E5E5;
    padding: 1rem 1.5rem 1.25rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 0.0625rem solid #E5E5E5;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;

    font-size: 0.875rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(110, 212, 190, 0.25);
}

.form-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.btn {

    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5cbfa8;
    transform: translateY(-0.0625rem);
}

.btn-secondary {
    background: var(--cards);
    color: var(--text-secondary);
    border: 0.0625rem solid #E5E5E5;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: var(--secondary);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-close {
    font-size: 1rem;
    opacity: 0.6;
}

.btn-close:hover {
    opacity: 1;
}

.swipe-button-container {
    display: flex;
    justify-content: center;
}

.swipe-button {
    background: transparent;
    border: 0.125rem solid #6ed4be;
    border-radius: 2rem;
    padding: 0.75rem 0.4375rem;
    width: 100%;
    max-width: 21.500rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.6875rem;
    box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    --gradient-position: 5%;
    user-select: none;
    -webkit-user-select: none;
}

.swipe-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #6ED4BE 0%, rgba(110, 212, 190, 0.3) var(--gradient-position, 6%), transparent 10%);
    z-index: 1;
}

.swipe-button:not(.swiping)::before {
    transition: all 0.3s ease;
}

.swipe-button.completed::before {
    background: #6ED4BE;
    transition: all 0.3s ease;
}

.swipe-button.completed .swipe-text {
    color: white;
    font-weight: 700;
    transition: color 0.3s ease;
}

.swipe-button.completed .swipe-arrows {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swipe-button:active {
    transform: scale(0.98);
}

.swipe-arrows {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #6ed4be;
    font-size: 0.75rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1.25rem;
    width: 100%;
    height: 2.188rem;
    overflow: hidden;
    z-index: 2;
}

.swipe-arrows i {
    position: absolute;
    animation: chevronFlow 2s infinite linear;
    opacity: 0;
}

.swipe-arrows .chevron-1 {
    animation-delay: 0s;
}

.swipe-arrows .chevron-2 {
    animation-delay: 0.03s;
}

.swipe-arrows .chevron-3 {
    animation-delay: 0.06s;
}

@keyframes chevronFlow {
    0% {
        left: -1.25rem;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 18.75rem;
        /* Move across the entire button width */
        opacity: 0;
    }
}

.swipe-text {

    font-weight: 600;
    font-size: 0.875rem;
    color: #6ed4be;
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: opacity 0.2s ease, color 0.3s ease;
}

/* Override old flight styles when using new design */
.flight-status-card .flight-info {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

.flight-status-card .swipe-instruction {
    display: none;
}

/* Job Completion Card - Figma Design */
.job-completion-card {
    background: #BEBEBE;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.date-time-section {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.date-item,
.time-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.date-item i,
.time-item i {
    font-size: 0.875rem;
    color: var(--text-contrast);
    width: 0.875rem;
}

.trip-id-section .trip-reference {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-contrast);
}

/* Timeline Section */
.trip-timeline-section {
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-circle {
    width: 1.688rem;
    height: 1.688rem;
    border-radius: 50%;
    background: var(--bg);
    border: 0.125rem solid rgba(255, 255, 255, 0.3);
    position: absolute;
    z-index: 2;
}

.timeline-circle-left {
    left: -1.875rem;
}

.timeline-circle-right {
    right: -1.875rem;
}

.timeline-content {
    flex: 1;
    position: relative;
    background: transparent;
}

.timeline-times {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.start-time,
.end-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.time-large {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--text-contrast);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.location-code {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-contrast);
}

.duration-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    z-index: 2;
}

.plane-icon {
    color: var(--text-contrast);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.duration-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.625rem;
    color: var(--text-contrast);
}

.dashed-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0.063rem;
    border-top: 0.125rem dashed rgba(255, 255, 255, 0.5);
    transform: translateY(-50%);
    z-index: 1;
}

.action-buttons-row {
    display: flex;
    gap: 0.125rem;
}

.btn-tip-driver {
    flex: 1;
    background: var(--cards);
    color: var(--primary);
    border: none;
    border-radius: 0.5rem;
    padding: 0.125rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.5625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.0625rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, 0.05);
    min-height: 2.250rem;
}

.btn-tip-driver i {
    font-size: 1rem;
}

/* Rating Card */
.rating-section h6,
.rating-section label {
    font-weight: 400;
    font-size: 0.875rem;
    color: #2d2d2d;
    margin: 0 0 0.25rem 0;
    line-height: 1;
    text-align: left;
    width: 100%;
}

.rating-section .form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #2d2d2d;
    margin: 0 0 0.25rem 0;
    line-height: 1;
}

.rating-section .form-control {
    border: 0.0625rem solid #ecf0f1;
    border-radius: 1rem;
    padding: 0.5rem 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    resize: none;
    height: 3.125rem;
    width: 100%;
    background: #ffffff;
    box-sizing: border-box;
    outline: none;
}

.rating-section .form-control:focus {
    border-color: #6ed4be;
    box-shadow: none;
    outline: none;
}

.submit-section {
    margin-top: 0;
}

.btn-submit-rating {
    background: #6ed4be;
    color: #ffffff;
    border: none;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, 0.05);
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-submit-rating:hover {
    opacity: 0.9;
}

.btn-submit-rating:disabled {
    background: var(--inactive);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, 0.05);
}

/* Rating Submitted Card */
.rating-submitted-card {
    background: var(--cards);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, 0.05);
    border: 0.0625rem solid #e8f5e8;
}

.rating-submitted-content h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #2d2d2d;
    margin: 0 0 0.75rem 0;
    text-align: center;
}

.submitted-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.submitted-stars {
    display: flex;
    gap: 0.25rem;
}

.submitted-stars .star {
    width: 1.250rem;
    height: 1.250rem;
    font-size: 1.125rem;
    color: #ddd;
    opacity: 0.3;
}

.submitted-stars .star.submitted-active {
    color: #FB8C00;
    opacity: 1;
}

.rating-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #2d2d2d;
}

.submitted-comment {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.submitted-comment strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: #666666;
    display: block;
    margin-bottom: 0.25rem;
}

.submitted-comment p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: #2d2d2d;
    margin: 0;
    font-style: italic;
}

.rating-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #666666;
    text-align: center;
}

.submitted-tip {
    background: #f0fdf4;
    border: 0.0625rem solid #bbf7d0;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submitted-tip strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: #15803d;
}

.submitted-tip .tip-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #15803d;
}

/* Tip Card */
.tip-card {
    background: var(--cards);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-section h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #2d2d2d;
    margin: 0 0 0.25rem 0;
    line-height: 1;
}

.tip-amounts {
    display: flex;
    gap: 0.25rem;
    width: 100%;
}

.tip-amount-btn {
    flex: 1;
    background: transparent;
    border: 0.0625rem solid #6ed4be;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #6ed4be;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, 0.05);
}

.tip-amount-btn:hover {
    background: #6ed4be;
    color: #ffffff;
}

.tip-amount-btn.selected {
    background: #6ed4be;
    color: #ffffff;
}

.custom-tip-input {
    margin-top: 0.75rem;
}

.custom-tip-input .form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #2d2d2d;
    margin: 0 0 0.25rem 0;
    line-height: 1;
}

.custom-tip-field {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #2d2d2d;
    z-index: 1;
}

.custom-tip-field input {
    width: 100%;
    height: 2.063rem;
    border: 0.0625rem solid #ecf0f1;
    border-radius: 1rem;
    padding: 0.5rem 0.75rem 0.5rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    background: #ffffff;
    box-sizing: border-box;
    outline: none;
}

.custom-tip-field input:focus {
    border-color: #6ed4be;
    box-shadow: none;
    outline: none;
}

.apple-pay-tip-container {
    margin-top: 0.5rem;
}

.apple-pay-tip-btn {
    width: 100%;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    height: 2.063rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1;
    transition: opacity 0.2s;
}

.apple-pay-tip-btn:hover {
    opacity: 0.9;
}

.apple-pay-tip-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Report Issue Floating Action Button */
.report-fab {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3.500rem;
    height: 3.500rem;
    background: #FB8C00;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 0.25rem 0.75rem rgba(251, 140, 0, 0.3);
    z-index: 1001;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-fab:hover {
    background: #F57C00;
    box-shadow: 0 0.375rem 1rem rgba(251, 140, 0, 0.4);
    transform: translateY(-0.125rem);
}

.report-fab:active {
    transform: translateY(0);
}

/* Report Issue Card */
.report-card {
    background: var(--cards);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.report-section h6 {
    font-weight: 400;
    font-size: 0.875rem;
    color: #2d2d2d;
    margin: 0 0 0.75rem 0;
    line-height: 1;
    text-align: left;
    width: 100%;
}

.report-section .form-control {
    border: 0.0625rem solid #ddd;
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #2d2d2d;
    background: white;
    resize: vertical;
    min-height: 5.000rem;
    margin-bottom: 1rem;
}

.report-section .form-control:focus {
    outline: none;
    border-color: #FB8C00;
    box-shadow: 0 0 0 0.125rem rgba(251, 140, 0, 0.1);
}

.report-section .btn-submit-report {
    background: #FB8C00;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.report-section .btn-submit-report:hover {
    background: #F57C00;
}

.report-section .btn-submit-report:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Report Success Message */
.report-success-message {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #2d2d2d;
    line-height: 1.2;
    text-align: center;
    padding: 1.25rem;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.filters-sections .form-control,
.filters-sections .form-select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.filters-sections .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}

#clearDateFilter {
    position: absolute;
    right: 0.5rem;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}