/* Custom styles for Flask app */

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.jumbotron {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.navbar-brand {
    font-weight: bold;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

pre {
    font-size: 0.9em;
}

.list-unstyled li {
    padding: 0.25rem 0;
}

.bg-blue-cake {
    background-color: #AEC6CF;
}

.text-blue-cake {
    color: #AEC6CF;
}

.bg-yellow-cake {
    background-color: #FFF89A;
}

.text-yellow-cake {
    color: #FFF89A;
}

.bg-green-cake {
    background-color: #77DD77;
}

.text-green-cake {
    color: #77DD77;
}

.bg-grey-cake {
    background-color: #D3D3D3;
}

.text-grey-cake {
    color: #D3D3D3;
}

.btn-demo a { color: #ffffff; }

.btn-demo-light {
    background-color: #ffffff;
    color: #000000;
}

.btn-demo-light a {
    color: #000000;
}

.btn-demo-light:hover {
    background-color: transparent;
    color: #ffffff !important;
}

.btn-demo-light:hover a {
    color: #ffffff !important;
}

.btn-demo-light:hover img {
    filter: invert(1);
}

.btn-demo:hover {
    background-color: transparent;
    color: #000000 !important;
}

.btn-demo:hover a {
    color: #000000 !important;
}

.btn-demo-alt:hover img {
    filter: invert(0) !important;
}

.btn-demo:hover img {
    filter: invert(1);
}

.external-link-icon {
filter: brightness(0) saturate(100%);
transition: filter 0.3s ease;
}

.btn-outline-dark:hover .external-link-icon {
filter: brightness(1) saturate(0%);
}