﻿

/*Dashboard - Bless (Light)*/
:root,
[dashboard-bless-theme=light] {
    --card-colour: #32267D;
    --text-color: white;
    --subcard-color: white;
    --subtext-color: black;
    --btn_reset: #B4B4B4;
    --lbl_btn_reset: #000000;
    --chart-card: #FFFFFF;
}

[dashboard-bless-theme=night] {
    --card-colour: #C4CAFF;
    --text-color: black;
    --subcard-color: white;
    --subtext-color: black;
    --btn_reset: #B4B4B4;
    --lbl_btn_reset: #000000;
    --chart-card: #FFFFFF;
}

[dashboard-ind-theme=light] {
    --card-colour: #742633;
    --text-color: white;
    --subcard-color: white;
    --subtext-color: black;
    --btn_reset: #B4B4B4;
    --lbl_btn_reset: #000000;
    --chart-card: #FFFFFF;
}

[dashboard-ind-theme=night] {
    --card-colour: #F5D6D4;
    --text-color: black;
    --subcard-color: white;
    --subtext-color: black;
    --btn_reset: #B4B4B4;
    --lbl_btn_reset: #000000;
    --chart-card: #FFFFFF;
}

[dashboard-Agency-theme=light] {
    --card-colour: #093B70;
    --text-color: white;
    --subcard-color: white;
    --subtext-color: black;
    --btn_reset: #B4B4B4;
    --lbl_btn_reset: #000000;
    --chart-card: #FFFFFF;
}

[dashboard-Agency-theme=night] {
    --card-colour: #B9DBFE;
    --text-color: black;
    --subcard-color: white;
    --subtext-color: black;
    --btn_reset: #B4B4B4;
    --lbl_btn_reset: #000000;
    --chart-card: #FFFFFF;
}

.dashboard-card {
    background-color: var(--card-colour);
    color: var(--text-color);
    border-radius: 10px;
    /*height: 150px;*/
    width: 100%;
}

.dashboard-card-title {
    font-size: 20px;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 40%; /* Ensure it spans the full height */
}

.dashboard-card-data {
    font-size: 40px;
    font-weight: bold;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 50%; /* Ensure it spans the full height */
}

.dashboard-card-chart {
    margin-left: 10px;
    background-color: var(--chart-card);
    border-radius: 10px;
    height: 500px;
    width: 98%;
}

.dashboard-card-chart-data {
    background-color: var(--chart-card);
    display: flex;
    margin: 20px 20px 20px 20px;
    height: 90%;
    width: 95%;
}

.dashboard-card-quickstart {
    background-color: var(--card-colour);
    margin-left: 10px;
    color: var(--text-color);
    border-radius: 10px;
    height: 500px;
    width: 95%;
}

.dashboard-card-quickstart-title {
    margin: 20px 20px 20px 20px;
    font-size: 25px;
    font-weight: bold;
}

.dashboard-card-quickstart-data {
    margin: 20px 20px 20px 20px;
    height: 80%;
}

.dashboard-quickstart-title {
    margin: 20px 20px 20px 20px;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.dashboard-quickstart-data a {
    font-size: 50px;
    margin: 20px 20px 20px 20px;
    color: var(--text-color);
}

.dashboard-card-FAQ {
    background-color: var(--card-colour);
    color: var(--text-color);
    border-radius: 10px;
    height: 500px;
    width: 95%;
    margin-left: 10px;
}

.dashboard-card-FAQ-title {
    margin: 20px 20px 20px 20px;
    font-size: 25px;
    font-weight: bold;
}

.dashboard-card-FAQ-data {
    margin: 20px 20px 20px 20px;
    height: 80%;
}

.dashboard-FAQ-title {
    margin: 20px 20px 20px 20px;
    color: var(--text-color);
    font-size: 20px;
    font-weight: bold;
}

.dashboard-FAQ-data {
    margin: 20px 20px 20px 20px;
    color: var(--text-color);
}

/*Footer - start*/
.footer {
    background-color: var(--card-colour); /* Dark blue background */
    color: var(--text-color); /* White text */
    text-align: center;
    padding: 10px 0;
    position: fixed; /* Stick to the bottom */
    bottom: 0;
    width: 100%;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.footer-content {
    margin: 0 auto;
    max-width: 1200px; /* Adjust for responsiveness */
}
/*Footer - end*/

/*listing*/
.Title {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: bold;
    padding: 50px 50px 50px 50px;
}

.listing-header {
    background-color: var(--card-colour);
    padding: 20px 20px 20px 20px;
    margin: 0px 50px 0px 50px;
    color: var(--text-color);
    border-radius: 10px
}

.listing-card {
    background-color: white;
    padding: 20px 20px 20px 20px;
    margin: 0px 50px 0px 50px;
    border-radius: 10px
}

.Search-button {
    background-color: var(--card-colour);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    margin: 10px 0px 0px 10px;
    height: 50px;
    width: 40%;
    font-size: 15px;
    border-radius: 10px
}

.Reset-button {
    background-color: var(--btn_reset);
    color: var(--lbl_btn_reset);
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    margin: 10px 0px 0px 10px;
    height: 50px;
    width: 40%;
    font-size: 15px;
    border-radius: 10px;
}

.slideshow-container {
    position: relative;
    width: 100%; /* Adjust width based on your design */
    height: 100%;
}

.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.prev {
    top: 50%;
    left: 0;
}

.next {
    top: 50%;
    right: 0;
}

.slideshow-container:hover .prev, .slideshow-container:hover .next {
    opacity: 1;
}

/*JGN PADAM*/

.list-group-item:has(div.row.edg-row-hidden){
    display: none;
}