.trips-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.trips-list {
    padding: 10px 20px;
    overflow-y: auto;
    max-height: calc(100vh - 260px);
}

.trip-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.trip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trip-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trip-meta .delete-trip {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: rgba(255, 107, 107, 0.7);
    transition: all 0.3s ease;
    font-size: 18px;
}

.trip-meta .delete-trip:hover {
    color: rgba(255, 107, 107, 1);
    transform: scale(1.2);
}

.trip-meta .delete-trip i {
    font-size: 16px;
}

.trip-favorite-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    font-size: 18px;
}

.trip-favorite-btn:hover {
    color: #ffd700;
    transform: scale(1.2);
}

.trip-favorite-btn i.fa-star {
    color: #ffd700;
}

.trip-card.favorited {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
}

.trip-transports {
    display: flex;
    gap: 10px;
}

.trip-transports i {
    color: #2ECC71;
    font-size: 18px;
    background: rgba(0, 102, 179, 0.1);
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trip-transports i:hover {
    background: rgba(0, 102, 179, 0.2);
    transform: scale(1.1);
}

.trip-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
}

.trip-route {
    margin: 15px 0;
    position: relative;
}

.trip-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    margin: 8px 0;
    padding-left: 5px;
}

.trip-point i {
    font-size: 12px;
    width: 16px;
    text-align: center;
}

.trip-start i {
    color: #0066B3;
}

.trip-end i {
    color: #2ECC71;
    font-size: 16px;
}

.trip-point span {
    font-size: 14px;
    font-weight: 500;
}

.trip-line {
    width: 2px;
    height: 15px;
    background: linear-gradient(to bottom, #0066B3, #2ECC71);
    margin-left: 12px;
    border-radius: 2px;
}

.trip-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    padding: 8px 12px;
    background: rgba(0, 102, 179, 0.1);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.trip-stats i {
    color: #ffffff;
}

.trip-notes {
    display: flex;
    align-items: start;
    gap: 8px;
    margin: 10px 0;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    border-left: 3px solid #0066B3;
}

.trip-notes i {
    color: #0066B3;
    margin-top: 2px;
    flex-shrink: 0;
}

.trip-actions {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trip-action-btn {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: white;
    white-space: nowrap;
}

.trip-action-btn i {
    font-size: 14px;
    flex-shrink: 0;
}

.reuse-trip {
    background: linear-gradient(135deg, #0066B3 0%, #0088E8 100%);
}

.reuse-trip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 179, 0.4);
}

.reuse-trip:active {
    transform: translateY(0);
}

.show-trip {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(46, 204, 113, 0.15));
    border: 1px solid rgba(46, 204, 113, 0.4);
}

.show-trip:hover {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.35), rgba(46, 204, 113, 0.25));
    border-color: rgba(46, 204, 113, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.show-trip:active {
    transform: translateY(0);
}

.no-trips {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.no-trips i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.no-trips p {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.no-trips-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

@media (max-width: 768px) {
    .trips-title {
        font-size: 16px;
    }

    .trips-list {
        padding: 10px 15px;
        max-height: calc(100vh - 300px);
    }

    .trip-card {
        padding: 15px;
    }

    .trip-transports i {
        font-size: 16px;
        padding: 6px;
    }

    .trip-actions {
        gap: 6px;
    }

    .trip-action-btn {
        padding: 10px 8px;
        font-size: 11px;
        gap: 4px;
    }

    .trip-action-btn span {
        font-size: 10px;
    }

    .trip-action-btn i {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .trip-action-btn span {
        display: none;
    }

    .trip-action-btn i {
        font-size: 16px;
    }

    .trip-action-btn {
        padding: 10px 12px;
    }
}

.trip-card {
    animation: fadeInUp 0.4s ease-out;
}

.trip-card:nth-child(1) { animation-delay: 0.1s; }
.trip-card:nth-child(2) { animation-delay: 0.2s; }
.trip-card:nth-child(3) { animation-delay: 0.3s; }
.trip-card:nth-child(4) { animation-delay: 0.4s; }
.trip-card:nth-child(5) { animation-delay: 0.5s; }

.trip-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.trip-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.trip-notification-success {
    color: #10b981;
    border-left: 4px solid #10b981;
}

.trip-notification-error {
    color: #ef4444;
    border-left: 4px solid #ef4444;
}

.trip-notification-info {
    color: #0066B3;
    border-left: 4px solid #0066B3;
}

.trip-notification i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .trip-notification {
        top: 70px;
        right: 15px;
        left: 15px;
        font-size: 13px;
    }
}
