@font-face {
    font-family: iransans;
    src: url("./../../assets/fonts/IranSans.ttf") format('truetype');
    font-weight: 800;
}

body {
    background-color: #202020 !important;
    font-size: 16px !important;
    font-family: iransans;
    color: #d9ae50;
    overflow-x: hidden !important;
}

span.table_date {
    font-size: 32px;
}

span.table_day {
    font-size: 16px;
}

span.table_month {
    font-size: 16px;
}

main {
    user-select: none;
}


table {
    font-family: iransans;
    width: 95% !important;
    position: relative;
    right: 50%;
    transform: translateX(50%);
}


table tr {
    display: flex;
    align-items: center;
    justify-content: center;
}


table tr td {
    height: 120px;
    border-radius: 10px;
    border: 1px solid #fff;
    cursor: pointer;
    margin: 10px 0 0 10px;
    transition: all 0.5s ease;
}

table tr th {
    height: 40px;
    border-radius: 10px;
    border: 1px solid #fff;
    cursor: pointer;
    margin: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

table tr th:nth-child(1),
table tr th:nth-child(2) {
    width: 14% !important;
    text-align: center !important;
    padding: 10px 0;
}

table tr th:nth-child(3) {
    display: flex;
    align-items: center;
    width: 70% !important;
}

table tr th:nth-child(3) span {
    margin: 0 20px;
    font-size: 17px;
}

table tr td:nth-child(1),
table tr td:nth-child(2) {
    width: 14% !important;
    text-align: center !important;
    padding: 10px 0;
}

table tr td:hover {
    background-color: #434343;
    color: #fff;
}

table tr td:nth-child(3) {
    display: flex;
    align-items: center;
    width: 70% !important;
}

table tr td:nth-child(3) span {
    margin: 0 20px;
    font-size: 17px;
}

@media only screen and (max-width: 600px) {
    table tr th {
        font-size: 14px;
        padding: 0;
    }

    table tr td span{
        padding: 0;
        margin: 0;
    }

    span.table_date {
        font-size: 22px;
    }

    table tr td:nth-child(3) span {
        margin: 0 10px;
        font-size: 15px;
        line-height: 30px;
    }
}