@tailwind base;
@tailwind components;
@tailwind utilities;

@import './old-design.css';

@layer utilities {
    .hover-img-white:hover img {
        filter: brightness(0) invert(1);
    }
}

span, div, p, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Inter', sans-serif;
}

ul, ol {
    margin-left: 2rem;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

.button {
    display: flex;
    width: fit-content;
    font-weight: 500;
    border-radius: 0.5rem !important;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
}

.main-button {
    color: #6776E6;
    background-color: #F2F3FD !important;
    border: 1px solid #6776E6;
}

.main-button:hover {
    background-color: #6776E6 !important;
    color: #fff;
}

.main-button:hover {
    background-color: #6776E6 !important;
    color: #fff;
}

.main-button-active {
    background-color: #6776E6 !important;
    color: #fff;
}

.secondary-button {
    color: #4B5563;
    background-color: #fff !important;
    border: 1px solid #4B5563;
}

.danger-button {
    color: #F05252;
    background-color: #FDF2F2 !important;
    border: 1px solid #F05252;
}

.success-button {
    color: #0E9F6E;
    background-color: #F3FAF7 !important;
    border: 1px solid #0E9F6E;
}

.success-button:hover {
    background-color: #0E9F6E !important;
    color: #fff;
}

.warning-button {
    color: #F29C50;
    background-color: #FEF6E9 !important;
    border: 1px solid #F29C50;
}