/* Custom styles for birthday calculator */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.gradient-text {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.input-field {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #ffffff, #f8fafc);
}
.input-field:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.result-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
#clear-time {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    width: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}
#clear-time i {
    pointer-events: none;
} 