@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --color-primary: 23, 157, 247;
    --color-secondary: 245, 245, 245;
    --color-danger: 255, 59, 69;
}

body {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 15px;
    background: white;
    color: black;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    line-height: 30px !important;
}

.text-primary {
    color: rgb(var(--color-primary));
}

.bg-grid-pattern {
    background-image: linear-gradient(90deg, #4b4b4b4d 1px, #0000 1px),
        linear-gradient(#4b4b4b4d 1px, #0000 1px),
        repeating-linear-gradient(
            45deg,
            #4b4b4b1a 0,
            #4b4b4b1a 1px,
            #0000 1px,
            #0000 10px
        );
    background-size: 50px 50px;
}

.bg-primary {
    background-color: rgb(var(--color-primary));
}
.bg-secondary {
    background-color: rgb(var(--color-secondary));
}
.bg-danger {
    background-color: rgb(var(--color-danger));
}

.card {
    background-color: white;
    border: 2px solid black;
    border-radius: 5px;
    box-shadow: 4px 4px 0 0 #000;
}
.card-header {
    border-bottom: 2px solid black;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: large;
}
.card-body {
    padding: 20px;
}

a:hover {
    color: rgb(var(--color-primary));
}

label {
    font-size: 17px;
    font-weight: bold;
}

.form-control {
    display: block;
    background-color: white;
    border: 2px solid black;
    border-radius: 5px;
    box-shadow: 4px 4px 0 0 #000;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    width: 100%;
}
.form-control:active {
    box-shadow: none;
    translate: 4px 4px;
}
.form-control:focus {
    border-color: rgb(var(--color-primary));
    outline: none;
}
.form-control:disabled {
    opacity: 0.5;
}
.trumbowyg-box {
    border: 2px solid black !important;
    border-radius: 5px;
    box-shadow: 4px 4px 0 0 #000;
}
.trumbowyg-box .trumbowyg-button-pane {
    background-color: rgb(243, 244, 246) !important;
    border-bottom: none !important;
    border-radius: 5px;
}

.btn {
    display: flex;
    border: 2px solid black;
    border-radius: 5px;
    box-shadow: 4px 4px 0 0 #000;
    transition: all;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    user-select: none;
}
.btn.btn-sm {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    font-weight: bold;
    font-size: 14px;
}
.btn:hover {
    box-shadow: none;
    translate: 4px 4px;
}
a.btn:hover {
    color: black;
}
.btn:active {
    translate: 2px 2px;
}
.btn:disabled {
    opacity: 0.5;
}
.btn:disabled:hover {
    box-shadow: 4px 4px 0 0 #000;
    translate: none;
}
.btn-invalid {
    background-color: white;
    color: oklch(63.7% 0.237 25.331);
}

.trumbowyg-editor a, #description a {
    color: rgb(var(--color-primary));
    text-decoration: underline;
}

.trumbowyg-editor ul, .trumbowyg-editor ol, #description ul, #description ol {
    padding-left: 1.5rem;
}

.trumbowyg-editor ul li, #description ul li {
    list-style-type: disc;
}

.trumbowyg-editor ol li, #description ol li {
    list-style-type: decimal;
}
