:root {
    --primary-color: #1E88E5;
    --primary-light: #6ab7ff;
    --primary-dark: #005cb2;
    --secondary-color: #e3f2fd;
}

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background-color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.profile-header {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
}

.card {
    border-radius: 15px;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border: none;
    overflow: hidden;
}

.card-header {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    border-bottom: none;
}

.nav-link {
    color: #495057;
    font-weight: 500;
}

.nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 3px solid var(--primary-color) !important;
    background-color: transparent !important;
}

.nav-tabs {
    border-bottom: none;
}

.order-item {
    background-color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
}

.payment-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 180px;
}

.payment-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}

.payment-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -70px;
    left: -30px;
}

.card-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 6px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.card-chip::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    top: 5px;
    left: 10px;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* stylelint-disable-line property-no-unknown */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  

