:root {
    --bs-primary: #00aeef;
    --bs-dark: #004d8c;
    --primary-color: #004d8c;
    /* Dark Navy for top bar */
    --secondary-color: #0093d9;
    /* Light Blue for buttons/search */
    --accent-color: #ff8236;
    --text-dark: #333333;
    --text-light: #777777;
    --bg-light: #f4f7f9;
}

body {
    font-family: 'Inter', 'Outfit', sans-serif;
    color: var(--text-dark);
}

.transition {
    transition: all 0.3s ease;
}

.cursor-pointer {
    cursor: pointer;
}

.transition-link:hover {
    color: var(--primary-color) !important;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

/* Custom shadow for premium feel */
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .04) !important;
}

.shadow {
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08) !important;
}