﻿
.tip-container {
    display: none;
    background-color: antiquewhite;
    border-left: 5px solid #003986;
    padding: 15px;
    border-radius: 6px;
    animation: slideDown 0.4s ease;
    width: 100%;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tip-title {
    font-weight: 600;
    color: #0d6efd;
    text-align: left;
    font-family: "Inter";
}

.tip-text {
    font-size: 14px;
    color: #000;
    text-align: left;
    font-family: "Inter";
    font-weight :500;
}
