* {
    outline: none;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.navbar-brand img {
    height: 32px;
    width: auto;
}

.navbar-brand {
    margin-right: 2rem;
}

.card {
    border: none;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.card-img-top {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.card-title {
    font-size: 16px !important;
    transition: color 0.2s ease;
}

.coming-soon {
    pointer-events: auto;
}

.card-body {
    border: 1px solid #eee;
}

.footer {
    margin-top: auto;
    background-color: white;
    border-top: 1px solid #dee2e6;
}