﻿@media (min-width: 1025px) {
    .h-custom {
        height: 100vh !important;
    }
}
@import '~mdb-ui-kit/css/mdb.min.css';

.fixed-size-input {
    height: 40px;
    width: 180px;
}
    .card-registration .select-input.form-control[readonly]:not([disabled]) {
    font-size: 1rem;
    line-height: 2.15;
    padding-left: .75em;
    padding-right: .75em;
}
/* Custom CSS for the colorful table */
.colorful-table {
    border: 1px solid #dee2e6;
    width: 100%;
}

    .colorful-table thead th {
        background-color: #dee2e6; /* Set the background color for table header */
        color:#0026ff; /* Set the text color for table header */
    }

    .colorful-table tbody td {
        background-color: #fff; /* Set the background color for table cells (light green) */
        color: #000; /* Set the text color for table cells */
    }

    .colorful-table tbody tr:hover td {
        background-color: #dee2e6; /* Set the background color for table cells on hover */
        color: #fff; /* Set the text color for table cells on hover */
    }
/* CSS for the footer */
footer {
    background-color: #333; /* Set the background color for the footer */
    color: #fff; /* Set the text color for the footer */
    padding: 20px; /* Add some padding to the footer for spacing */
    text-align: center; /* Center-align the text inside the footer */
    font-size: 14px; /* Set the font size for the footer text */
}

    /* CSS for the footer table */
    footer table {
        width: 100%;
        border-collapse: collapse; /* Collapse table borders */
    }

    footer th,
    footer td {
        padding: 8px;
        border: 1px solid #fff; /* Set the border style for table cells */
    }

    /* Optional: Apply different background and text colors to table header cells */
    footer th {
        background-color: #f0ad4e;
        color: #fff;
    }

    /* Optional: Apply different background and text colors to table body cells */
    footer td {
        background-color: #5bc0de;
        color: #fff;
    }


/* Style the dropdown button */
.dropbtn {
    background-color: #3498db;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    display: inline-block;
    position: relative;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: -100%; /* Position above the button */
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

@media print {
    .hidden-print,
    .hidden-print * {
        display: none !important;
    }
}
.btn-custom-primary {
    background-color: #007BFF; /* Adjust the color code as needed */
    border-color: #007BFF; /* Matching border color */
    color: #fff; /* Text color */
}

    /* Hover state for the custom primary button */
    .btn-custom-primary:hover {
        background-color: #0056b3; /* Adjust the hover color as needed */
        border-color: #0056b3; /* Matching hover border color */
        color: #fff; /* Text color on hover */
    }
/* Define a custom deep purple button color */
.btn-custom-purple {
    background-color: #800080; /* Deep purple color code */
    border-color: #800080; /* Matching border color */
    color: #fff; /* Text color */
}

    /* Hover state for the custom deep purple button */
    .btn-custom-purple:hover {
        background-color: #660066; /* Adjust the hover color as needed */
        border-color: #660066; /* Matching hover border color */
        color: #fff; /* Text color on hover */
    }
/* Define a custom deep purple text color */
.text-custom-purple {
    color: #800080; /* Deep purple color code */
}
/* Custom input style with deep primary color */
/* Custom input style with Deep Sky Blue color */
.custom-input {
    font-weight: bold;
    color: #000; /* Black color code */
}

/* Custom text style with Black color */
.custom-text {
    font-weight: bold;
    color: #000; /* Black color code */
}

@media print {
    .search-form {
        display: none;
    }
}