﻿

.valid-dot {
    color: green;
    /*font-weight: bolder;*/
    margin-right: 12px;
}

.invalid-dot {
    color: red;
    /*font-weight: bolder;*/
    margin-right: 12px;
}

.reason {
    font-weight: bold;
}

.selected-date {
    background-color: #d4edda; /* Green background for selected date */
}


.tooltiptext {
    visibility: visible;
    width: 22px;
    height: 22px;
    background-color: white;
    color: #234f95;
    text-align: center;
    border-radius: 10%;
    top: -8px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    font-size: 14px;
    border: 1px solid #234f95;
}

    .tooltiptext:before {
        content: '';
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #234f95;
        position: absolute;
        top: 19px;
        left: 0px;
    }

    .tooltiptext:after {
        content: '';
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid white;
        position: absolute;
        top: 18px;
        left: 0px;
    }

.public-holiday-button {
    text-decoration: line-through red;
}

.public-holiday .available-text {
    position: relative;
    text-decoration: line-through red;
    top: -3px; /* Adjust this value to move the line up or down */
}

.holiday-watermark {
    position: absolute;
    top: 15%;
    left: 78%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
    color: red; /* Adjust the color as needed */
    padding: 5px;
    border-radius: 3px;
    z-index: 9999;
    line-height: 1.2;
}

.table td, .table th {
    padding: 2px;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
/* Style for the button */
.btn-custom {
    border: none; /* Remove the border */
    background-color: transparent; /* Remove the background color */
    padding: 0; /* Remove padding */
}

/* Style for the icon */
.icon-gray {
    color: gray; /* Set the color to gray */
}


.table {
    width: 100%;
    border-collapse: collapse;
}

.thead-dark {
    background-color: #343a40;
    color: white;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    text-align: left;
}