@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Quicksand:wght@300..700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Josefin Sans", sans-serif;
    overflow-x: hidden;
}



/********************************************************* diamond page  */
.diamond-container {
    max-width: 2000px;
    min-height: 100vh;
    background-color: #ffffff;
    margin: 80px;
    padding: 40px;
    border: 1px solid black;
}

button {
    background-color: #000;
    color: white;
    padding: 10px 30px;
    font-size: 18px;
}

button i {
    font-size: 30px;
    margin-right: 20px;
}

b {
    font-size: 18px;
}

.filter {
    background-color: #000;
    color: white;
    padding: 20px 50px;
    font-size: 23px;
}

.filter:hover {
    color: rgb(0, 0, 0);
    border: 1px solid black;
    background-color: #ffffff;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    color: #333;
    transition: color 0.3s;
    margin-left: 30px;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox .checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
    transform-style: preserve-3d;
}

.custom-checkbox .checkmark::before {
    content: "\2713";
    font-size: 16px;
    color: transparent;
    transition: color 0.3s, transform 0.3s;
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark {
    background-color: #333;
    border-color: #333;
    transform: scale(1.1) rotateZ(360deg) rotateY(360deg);
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark::before {
    color: #fff;
}

.custom-checkbox:hover {
    color: #666;
}

.custom-checkbox:hover .checkmark {
    border-color: #666;
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.custom-checkbox input[type="checkbox"]:focus+.checkmark {
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
    outline: none;
}

.custom-checkbox .checkmark,
.custom-checkbox input[type="checkbox"]:checked+.checkmark {
    transition: background-color 1.3s, border-color 1.3s, color 1.3s, transform 0.3s;
}

.button-group {
    margin-bottom: 30px;
}

.input {
    max-width: 300px;
    padding: 0px 15px !important;
    height: 60px;
    font-size: 17px;
    color: black;
    border-top-left-radius: .5em;
    border-bottom-left-radius: .5em;
    border: 2px solid #000000;
    margin-right: -10px;
    margin-left: 20px;
}

.button {
    border: none;
    background-color: #980906;
    text-decoration: none;
    padding: 12px 40px;
    padding-bottom: 17px;
    font-size: 23px;
    margin-left: 20px;
    color: #fff;
    border-radius: .5em;
    cursor: pointer;
}

.button:hover {
    border: none;
    background-color: #aa1513;
    text-decoration: none;
    padding: 16px 40px;
    padding-bottom: 17px;
    font-size: 23px;
    margin-left: 20px;
    color: #fff;
    border-radius: .5em;
    cursor: pointer;
}

.span-line {
    margin-top: 30px;
}

.span-line span {
    font-size: 23px;
    border-right: 2px solid black;
    padding: 0 20px;
}

.span-line span:nth-child(5) {
    border-right: none;
}

.table-container {
    max-width: 100%;
    height: 100vh;
    background-color: #ffffff;
    margin: 20px;
    padding: 40px;
    border: 1px solid black;
    overflow-y: scroll;
}
a{
    color: #000;
    
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
}

th,
td {
    text-align: center;
    padding: 8px;
}
td i{
    font-size: 25px;
    margin-right: 10px;
}
.badge{
    padding: 8px 15px;
    font-size: 15px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}
