* {
    font-family: 'DM Sans', sans-serif;
}

h1,
h2,
h3,
.brand {
    font-family: 'Outfit', sans-serif;
}

html,
body {
    height: 100%;
    margin: 0;
    box-sizing: border-box;

}

.active {
    font-weight: bold;
}

.app-wrapper {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.gradient-accent {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.gradient-accent-text {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-hover {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.fade-in {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Base alert styles */
.alert-box {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-width: 1px;
    border-style: solid;
    border-radius: 0.375rem;
    /* Rounded corners */
    position: relative;
    font-weight: bold;
}

/* Ensure the inline text looks right */
.alert-box span {
    display: inline-block;
}