/* Global Styles */

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
}

main, .container {
    flex: 1;
}

/* Utility Classes */
.text-muted {
    color: var(--muted) !important;
}

.rounded-lg {
    border-radius: var(--border-radius);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (max-width: 768px) {
    .search-bar {
        width: 100%;
    }
}
