@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
    font-family: "DB_Heaven";
    src: url("../fonts/DBHeaventRounded-Reg.ttf") format("truetype");
}

@font-face {
    font-family: "DB_Heaven";
    src: url("../fonts/DBHeaventRounded-Reg.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
}

@font-face {
    font-family: "DB_Heaven";
    src: url("../fonts/DBHeaventRounded-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    letter-spacing: normal;
}

body {
    margin-top: 96px !important;
    background-color: white;
    min-height: 100vh;
}

* {
    font-family: "DB_Heaven", sans-serif;
}

.bg-primary {
    background-color: #de632a !important;
}
.text-primary {
    color: #de632a !important;
}
.border-primary {
    border: solid #de632a !important;
}
.bg-secondary {
    background-color: #21140b !important;
}
.table-header {
    background-color: #21140b;
    color: white;
}
.bg-tertiary {
    background-color: rgb(250, 225, 216);
}

.text-secondary {
    color: #21140b !important;
}

/* For Webkit browsers (Chrome, Safari, Edge, etc.) */
::-webkit-scrollbar {
    width: 8px; /* Set the width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: #de632a; /* Set the color of the scrollbar thumb */
    border-radius: 8px; /* Optional: Add rounded corners to the scrollbar thumb */
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Set the background color of the track */
}

.btn-primary {
    background-color: #ff7f50;
    color: white;
}
.btn-primary:hover {
    background-color: #ff6333;
}
.fallback-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f3f3f3;
    color: #ccc;
    font-size: 16px;
    height: 96px;
}
.h-svh-min {
    min-height: 100vh;
}
