.dashboard-header{
	background-color: var(--primary-trusted-blue);
	border-bottom: 1px solid var(--tertiary-proven-gray1);
	padding: 1rem 1.5rem;
}
.dashboard-header .profile-image{
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 100%;
	border: 1px solid #FFFFFF;
}
.dashboard-header .profile-wrapper{
	padding-left: 1.5rem;
}
.bg-accent-gold {
    background-color: var(--tertiary-confident-gold);
}
.header-search{
	width: 400px;
}
.header-search .icon{
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	color: var(--tertiary-proven-gray);
}
.header-search .form-control{
	padding-left: 50px;
	border: 1px solid var(--tertiary-proven-gray1);
	background-color: var(--tertiary-proven-gray1);
	border-radius: 0.5rem;
}
.dashboard-nav{
	display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.dashboard-nav .nav-item{
	margin-top: 0.4rem;
}
.dashboard-nav .nav-item .nav-link{
	font-size: 1rem;
	color: var(--tertiary-proven-gray);
	    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
	    padding-left: 0.75rem;
    padding-right: 0.75rem;
	border-radius: 0.5rem;
	    border-radius: 0.5rem;
}
.dashboard-sidebar{
	padding: 1.5rem 1rem;
	display: flex;
	overflow-y: auto;
	flex-direction: column;
	flex-shrink: 0;
	width: 16rem;
	border-right: 1px solid var(--tertiary-proven-gray1);
	width: 260px;
	height: calc(100vh - 155px);
	position: sticky;
	top: 120px;
	background-color: var(--white);
}
.dashboard-nav .nav-item .nav-link.active{
	background-color: rgba(0, 115, 157, 0.1);
    border-left: 4px solid #00739d;
    color: #00739d;
}
.dashboard-nav .nav-item .nav-link:hover{
	background-color: var(--tertiary-proven-gray1);
}
.container-main{
	display: flex;
	height: calc(100vh - 155px);
	overflow-y: hidden;
}
.main-content {
	height: calc(100vh - 155px);
	overflow-y: auto;
}
.dashboard-card{
	border-radius: 1rem;
    border: 1px solid var(--tertiary-proven-gray1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 1.5rem;
}
.dashboard-card .level-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.dashboard-card  .text-primary-custom {
    color: var(--primary-trusted-blue) ;
}
.dashboard-card  .text-muted{
    color: var(--tertiary-proven-gray) ;
}
.dashboard-card  .level-circle::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 8px solid var(--primary-trusted-blue);
    border-bottom-color: transparent;
    border-right-color: transparent;
    transform: rotate(-45deg);
}
.bg-primary-custom{
	background-color: var(--primary-trusted-blue);
	color: #fff;
}
.progress-custom {
    height: 10px;
    border-radius: 5px;
}
.dashboard-card--hasheader{
	padding: 0;
}
.text-primary{
	color: var(--primary-trusted-blue)!important;
}
.dashboard-card--hasheader .card-header{
	border-bottom: 1px solid var(--tertiary-proven-gray1);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.card-teams-member .member-info{
	line-height: 1;
}
.card-teams-member .member-info .text-muted{
	margin-bottom: 0px;
	font-size: 0.7rem;
}
.card-teams-member .member-info .small {
	font-size: 1rem;
	font-family: var(--Title-font);
}
.card-teams-member .member-info-wrapper{
	display: flex;
	align-items: center;
	gap: 0.2rem;
	padding: 0.5rem;
}
.card-creadits{
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	padding: 1rem;
	background-color: var(--primary-trusted-blue);
}
.card-creadits .small {
	font-size: 0.8rem;
}
.card-creadits  .rounded-circle{
	background-color: var(--tertiary-confident-gold);
	width: 32px;
	height: 32px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.creadit-count{
	font-size: 2.2rem;
	font-family: var(--Title-font);
	color: var(--white);
}
.btn-action.bg-primary-custom{
	transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
	color: var(--white);
	justify-content: space-between;
	align-items: center;
	display: flex;
	width: 100%;
	background-color: var(--primary-trusted-blue);
	border-radius: 0.75rem;
	border: none;
	padding: 1.25rem;
}
.btn-action .btn-body{
	text-align: left;
	font-size: 1rem;
}
.btn-action .btn-body .small{
	font-size: 0.75rem;
	font-family: var(--Title-font);
	text-transform: uppercase;
	color: var(--white);
	opacity: 0.75;
}
.btn-action:hover {
    transform: translateY(-2px);
    color: var(--white);
    opacity: 1;
}
.btn-action:hover .btn-body .small{
	opacity: 1;
}
.btn-action:hover .opacity-50{
	opacity: 1!important;
}
.download-btn{
	border: 1px dashed var(--tertiary-confident-gold);
	background-color: rgb(255, 192, 0, 0.3);
	border-radius: 0.75rem;
	padding: 1rem;
}
.download-btn .rounded-circle{
	background-color: var(--tertiary-confident-gold);
	width: 45px;
	height: 45px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.card-news .card-title h3{
	font-size: 1.5rem;
	font-family: var(--Main-font);
	font-weight: 500;
	color: var(--tertiary-solid-black);
}
.card-news  .material-symbols-outlined{
	color: var(--primary-trusted-blue)!important;
}
.card-news  .card-header{
	background-color: var(--tertiary-proven-gray1);
}
/* Hover background like hover:bg-gray-50 */
.hover-bg-light:hover {
  background-color: #f9fafb;
}

/* Accent sky color */
.text-accent-sky {
  color: #1eb7df;
}

.bg-accent-sky-soft {
  background-color: rgba(30, 183, 223, 0.1);
}
.text-accent-warning {
  color: #f15f5c;
}

.bg-accent-warning {
  background-color: rgba(241, 95, 92, 0.1);
}
.btn-close-menu{
	cursor: pointer;
	display: none!important;
}
@media (max-width: 767.98px) {
	.dashboard-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		z-index: 1050;
		transform: translateX(-100%);
		transition: transform 0.3s ease-in-out;
	}
	.dashboard-sidebar.active {
		transform: translateX(0);
	}
	.container-main {
		flex-direction: column;
		width: 100%;
	}
	.header-search{
		width: 100%;
		margin-bottom: 20px;
	}
	.btn-open-menu{
		cursor: pointer;
	}
	.btn-close-menu{
		display: inline-block!important;
		max-width: 22px;
        position: absolute;
        right: 1rem;
        top: 1rem;
	}
	.dashboard-nav{
		margin-top: 1.5rem;
	}
	.dashboard-header .brand-logo{
		max-width: 70%;
	}
	.dashboard-header .profile-image{
		width: 20px;
		height: 20px;
	}
	.dashboard-header .profile-wrapper{
		padding-left: 0.5rem;
	}
}
/* style for user dashboard page start */

.user-dashboard .dashboard-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.user-dashboard .progress-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.user-dashboard .progress-wrapper-container {
    background-color: #fff;
    padding: 45px;
    border-radius: 16px;
}
.user-dashboard .progress-wrapper .step{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.user-dashboard .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--tertiary-proven-gray1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-dashboard .step-circle.completed {
    background: var(--secondary-guiding-green);
    color: var(--white);
}
.user-dashboard  .step-circle.active {
    background: var(--tertiary-confident-gold);
    color: var(--white);
}
.user-dashboard  .step-line {
    flex: 1;
    height: 2px;
    background: #dee2e6;
    margin: 0 15px;
    margin-bottom: 20px;
}
.user-dashboard  .step-line.active {
    background: var(--secondary-guiding-green);
    margin-bottom: 20px;
}

/* Weekly Card Styling */
.user-dashboard  .weekly-card {
    border-radius: 16px;
    background: var(--white);
    padding: 45px;
}

/* Header */
.user-dashboard  .weekly-header {
    font-weight: 600;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom:20px;
    font-family: var(--Title-font);
    font-size: 19px;
}

.user-dashboard .chart-icon {
    color: #0d6efd;
}

/* Chart Layout */
.user-dashboard .weekly-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 180px;
    padding: 20px 10px;
}

/* Each Day */
.user-dashboard .chart-day {
    text-align: center;
    width: 60px;
}

/* Bar Wrapper */
.user-dashboard .bar-wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 6px;
    height: 140px;
}
.tooltip-burned .tooltip-inner {
  border: 1px solid var(--tertiary-creative-coral);
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  width: 50px;
}
/* Earned tooltip */
.tooltip-earned .tooltip-inner {
  border: 1px solid var(--secondary-guiding-green);
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  width: 50px;
}
/* Bars */
.user-dashboard  .dashboard-card.weekly-card .bar {
    width: 60px;
    border-radius: 6px;
}

.user-dashboard  .dashboard-card.weekly-card .bar.earned {
    background: var(--secondary-guiding-green);
}

.user-dashboard  .dashboard-card.weekly-card .bar.burned {
    background: var(--tertiary-creative-coral);
}

/* Day label */
.user-dashboard  .chart-day span {
    margin-top: 8px;
    font-size: 13px;
    font-family: var(--Main-font);
}

/* Legend */
.user-dashboard  .chart-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0 5px;
    border-top: 1px solid #ddd;
}

.user-dashboard  .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-family: var(--Main-font);
}

.user-dashboard .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.user-dashboard  .earned-dot {
    background: var(--secondary-guiding-green);
}

.user-dashboard  .burned-dot {
    background: var(--tertiary-creative-coral);
}

/* Heights */
.h-10{height:10px;}
.h-20{height:20px;}
.h-30{height:30px;}
.h-40{height:40px;}
.h-50{height:50px;}
.h-60{height:60px;}
.h-70{height:70px;}
.h-80{height:80px;}
.h-90{height:90px;}
.h-100{height:100px;}



   /* Team Section */


.user-dashboard .card-header {
    background-color: var(--white);
}

.user-dashboard  .byte-builder{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-dashboard .team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-dashboard  .member-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.user-dashboard  .member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

   /* Right Side Cards */

.user-dashboard .status-body,
.user-dashboard .coins-card .card-body {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-dashboard .action-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-dashboard .guidebook-body {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-dashboard .news-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-dashboard .status-card {
    background: var(--secondary-bright-sky);
    color: var(--white);
    border-radius: 12px;
    border:none;
}

.user-dashboard .coins-card {
    background: var(--primary-trusted-blue);
    color: var(--white);
    border-radius: 12px;
}

.user-dashboard .status-icon,
.user-dashboard .coins-icon,
.user-dashboard .guide-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-dashboard .status-icon {
    background: var(--white);
    color: var(--secondary-bright-sky);
}

.user-dashboard .coins-icon {
    background: var(--tertiary-confident-gold);
    color: var(--black);
}
.user-dashboard .card-footer{
    background-color: var(--white);
}
.user-dashboard .guidebook-card {
    border: 2px dashed var(--tertiary-confident-gold);
    border-radius: 12px;
    background: #fff8e1;
}

.user-dashboard .action-card {
    background: var( --secondary-nautical-navy);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.user-dashboard .action-card:hover {
    background-color:var(--secondary-bright-sky);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.user-dashboard .support-card {
    background: var(--secondary-guiding-green);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.user-dashboard .support-card:hover {
    background-color:var(--secondary-bright-sky);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.user-dashboard .action-icon {
    font-size: 32px;
    opacity: 0.6;
}

.user-dashboard .guide-icon {
    width: 45px;
    height: 45px;
    background: var(--tertiary-confident-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-dashboard .news-list .list-group-item {
    border: none;
}

.user-dashboard .news-list .badge {
    font-size: 10px;
}

@media (max-width: 992px) {

    /* .user-dashboard .progress-wrapper {
        flex-direction: column;
    }

    .user-dashboard .step-line {
        width: 2px;
        height: 30px;
        margin: 0;
    } */

    .user-dashboard .weekly-chart {
        overflow-x: auto;
    }
    .user-dashboard .chart-day {
        min-width: 60px;
    }
    .user-dashboard .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 768px) {

    .user-dashboard .title{
        text-align: center;
    }
    .user-dashboard .weekly-chart {
        overflow-x: auto;
    }

    .user-dashboard .chart-day {
        min-width: 70px;
    }

    .user-dashboard .legend-item {
        font-size: 13px;
    }

    .user-dashboard .member-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .user-dashboard .action-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .user-dashboard .status-body{
        align-items: flex-start;
    }

    .user-dashboard .guidebook-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .user-dashboard .byte-builder {
        flex-direction: column;
    }

    .user-dashboard .btn{
        margin: 15px 0px 15px 0px;
    }

}
@media (max-width: 576px) {

    .user-dashboard .weekly-chart {
        gap: 8px;
    }

    .user-dashboard .bar-earned,
    .user-dashboard .bar-burned {
        max-width: 18px;
    }

    .user-dashboard .chart-day small {
        font-size: 11px;
    }
     .user-dashboard .dashboard-tiers{
        flex-direction: column;
        align-items: flex-start!important;
        row-gap: 15px;
    }

}
/* style for user dashboard page end */
/* style for my team page start */
.group-file-upload {
	padding: 0px;
	padding-right: 0px!important;
}
.group-file-upload input{
    display: none;
}
.group-file-upload label{
    background: var(--secondary-transfomative-teal);
    border: 1px solid var(--secondary-transfomative-teal);
    border-radius: 8px;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'brother_1816medium';
    line-height: 1.5;
    padding: 10px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transition: background .3s ease-in, color .3s ease-in, border-color .3s ease-in;
    transition: background .3s ease-in, color .3s ease-in, border-color .3s ease-in;
    text-decoration: none;
    padding-right: 40px;
    max-width: fit-content;
	cursor: pointer;
	display: flex;
    align-items: center;
    gap: 5px;
}
.title-badge{
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-family: var(--Title-font);
	font-size: 0.75rem;
    line-height: 1rem;
	padding-top: 0.25rem;
    padding-bottom: 0.25rem;
	padding-left: 0.625rem;
    padding-right: 0.625rem;
	background-color: rgb(31 186 224 / 0.1);
	border-radius: 9999px;
	color: var(--secondary-bright-sky);
	max-width: fit-content;
	margin-bottom: 20px;
}
.title-discription{
	color: var(--tertiary-proven-gray);
}
.dashboard-card.team-card{
	border: 1px solid #dfdfdf;
	padding: 1.5rem;
	background-color: #FFFFFF;
}
.dashboard-card.bordered{
	border: 1px solid #dfdfdf;
}
.dashboard-card.white{
	padding: 1.5rem;
	background-color: #FFFFFF;
}
.latest-anno-card .anno-card-link {
    border-bottom: 1px solid var(--tertiary-proven-gray1);
}
.latest-anno-card .anno-card-link:last-child {
    border-bottom: none;
}
.latest-anno-card .anno-card-link:hover .list-group-item {
    background-color: var(--tertiary-proven-gray1);
}
.member-card{
	border: 1px solid #dfdfdf;
	background-color: #FFFFFF;
	border-radius: 1rem;
    border: 1px solid var(--tertiary-proven-gray1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 1.5rem;
	transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.member-card .member-image{
	border: 1px solid var(--tertiary-proven-gray1);
	border-radius: 0.5rem;
	width: 4rem;
    height: 4rem;
	position: relative;
}
.member-card .member-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.5rem;
}
.member-card  .icon{
	color: var(--tertiary-proven-gray1);
}
.member-card:hover{
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.member-card:hover  .icon{
	color: var(--primary-trusted-blue);
}
.member-card-wrapper{
	padding-top: 20px;
}
.small-title{
	font-size: 1rem;
	font-family: var(--Title-font);
	margin-bottom: 15px;
}
.quiz-prgress{
	margin-top: 60px;
}
.avatar-edit {
    position: absolute;
    bottom: -5px;
    right: -5px;
    z-index: 1;
}
.avatar-edit input {
    display: none;
}
.avatar-edit .edit-dp {
    background-color: rgba(227, 238, 254, 1);
    width: 30px;
    height: 30px;
    padding: 8px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    content: url('data:image/svg+xml,<svg width="20" height="18" viewBox="0 0 20 18" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1_1737)"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.8541 5C1.83011 5 1 5.83011 1 6.8541V11.8571C1 13.8619 1 14.8643 1.45983 15.5961C1.69961 15.9777 2.02229 16.3004 2.4039 16.5402C3.13571 17 4.1381 17 6.14286 17H13.8571C15.8619 17 16.8643 17 17.5961 16.5402C17.9777 16.3004 18.3004 15.9777 18.5402 15.5961C19 14.8643 19 13.8619 19 11.8571V6.8541C19 5.83011 18.1699 5 17.1459 5C16.4436 5 15.8016 4.60322 15.4875 3.97508L14.6667 2.33333L14.6666 2.33329C14.5567 2.1134 14.5017 2.00345 14.4394 1.90782C14.1141 1.40882 13.5833 1.08078 12.9915 1.01299C12.8781 1 12.7552 1 12.5093 1H7.49071C7.24484 1 7.1219 1 7.00848 1.01299C6.41668 1.08078 5.8859 1.40882 5.56062 1.90782C5.49827 2.00346 5.44329 2.11342 5.33333 2.33333L4.51246 3.97508C4.19839 4.60322 3.55638 5 2.8541 5ZM12 10C12 11.1046 11.1046 12 10 12C8.89543 12 8 11.1046 8 10C8 8.89543 8.89543 8 10 8C11.1046 8 12 8.89543 12 10ZM14 10C14 12.2091 12.2091 14 10 14C7.79086 14 6 12.2091 6 10C6 7.79086 7.79086 6 10 6C12.2091 6 14 7.79086 14 10Z" fill="%230F96FF"/></g><defs><clipPath id="clip0_1_1737"><rect width="20" height="18" fill="white"/></clipPath></defs></svg>');
    cursor: pointer;
}
.member-cropper-modal .cropper-bg{
	max-width: 100%;
}
.btn-upload.avatar-edit{
    position: static;
    padding-right: 20px;
}
.btn-upload.avatar-edit .edit-photo{
    width: 100%;
    height: 100%;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}
/* style for my team page end */
/* style for announcement page start */
.dashboard-card.announcement-card{
	border: 1px solid #dfdfdf;
	padding: 1.5rem;
	background-color: #FFFFFF;
}
.announcement-card.border-primary{
    border-color: var(--primary-trusted-blue)!important;
}
.dashboard-card.announcement-card.border-info{
	border-color: var(--secondary-bright-sky);
}
.announcement-card .sub-title{
	font-size: 1.3rem;
}
.announcement-card .text-muted{
	color: var(--tertiary-proven-gray)!important;
}
.announcement-overview{
	margin-bottom: 20px;
}
.announcement-overview p{
	/* font-size: 1.3rem;
	color: var(--tertiary-proven-gray);
	max-width: 80%; */
        font-size: 1rem;
    line-height: 1.7;
    font-family: var(--Main-font);
    margin-bottom: 15px;
    color: var(--tertiary-solid-black);
    font-weight: 300;
}
.dashboard-btn-group{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.dashboard-btn-group.space-between{
	justify-content: space-between;
}
@media (max-width: 767.98px) {
	.announcement-overview p{
		max-width: 100%;
	}
	.dashboard-btn-group{
		flex-direction: column;
	}
	.dashboard-btn-group .btn{
		margin-bottom: 2rem;
		width: 100%;
		max-width: 100%;
	}
	.quiz-prgress{
		margin-top: 0px;
	}
}
/* style for announcement page end */
/* style for Rule Book page start */
.rulebook-intro h1 {
  font-size: 2rem;
}

.rulebook-intro h4 {
  font-weight: 400;
  margin-top: 15px;
}

.rulebook-intro p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.rulebook-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.rulebook-table {
  max-width: 700px;
  border-collapse: collapse;
}

.rulebook-table thead th {
  background-color: var(--secondary-bright-sky);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 10px;
  border: 1px solid var(--tertiary-proven-gray);
  white-space: nowrap;
}

.rulebook-table tbody td {
  background-color: var(--tertiary-proven-gray1);
  padding: 8px 10px;
  border: 1px solid var(--tertiary-proven-gray);
  white-space: nowrap;
}

.rulebook-table .total-row td {
  font-weight: 700;
  background-color: var(--secondary-guiding-green2);
}

.rulebook-table.table {
  margin-bottom: 0;
}


@media (max-width: 768px) {
  .rulebook-intro h1 {
    font-size: 1.5rem;
  }

  .rulebook-intro h4 {
    font-size: 15px;
  }
  .rulebook-mob{
    margin-top:13px;
  }
}
.rulebook-tab-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.rulebook-tab-wrapper .nav-tabs .nav-link{
    background-color: var(--white);
    color: var(--tertiary-solid-black);
    border: none;
    border-radius: 8px;
    padding: 10px 40px;
    font-size: 1rem;
    font-family: 'brother_1816medium';
    line-height: 1.5;
    transition: background .3s ease-in, color .3s ease-in, border-color .3s ease-in;
    border-radius: 0px;
}
.rulebook-tab-wrapper .nav-tabs .nav-link.active{
    background-color: var(--primary-trusted-blue);
    color: var(--white);
    border-radius: 0px;
}
.rulebook-tab-wrapper .nav-tabs{
    border-bottom: none;
}
.rulebook-tab-wrapper  .download-pdf-btn{
    max-width: 300px;
}
/* style for Rule Book page end */
/* style for service request page start */
.service-requests .title{
    margin-bottom: 0px;
}

.service-request-card{
    margin-bottom: 1.5rem;
}

.service-card-inside {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-input {
    position: relative;
}

.search-input input {
    padding-left: 2.5rem;
    height: 44px;
    border-radius: 8px;
}
/* Requested Reason th column starts */
.reason-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    max-width: 100%;
    word-break: break-word;
}
.reason-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.reason-modal-content {
    background: #fff;
    padding: 25px;
    width: 500px;
    max-width: 90%;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    word-break: break-word;
}

.close-btn {
    float: right;
    font-size: 25px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0px;
}
/* Requested Reason th column ends */
.btn-tertiary-border .search-btn-icon {
    transform: translateY(11%);
    font-size: 20px;
}
.service-request-btn-block {
    visibility: hidden;
}
.search-input .icon{
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.6;
}
.btn-filter {
    height: 44px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ced4da;
    background: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-filter .material-symbols-outlined {
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
}


.service-request-card .table thead th {
    border-bottom: none !important;
}

.request-table-card table{
    min-width: 900px;
}

.request-table-card .badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* HIGH - Soft Red */
.request-table-card .badge-priority-high {
    color: var(--white);
    background-color: var(--tertiary-creative-coral);
}

/* MEDIUM - Soft Amber */
.request-table-card .badge-priority-medium {
    background-color: var(--tertiary-confident-gold);
    color: var(--white);
}

/* LOW */
.request-table-card .badge-priority-low {
    background-color: rgba(184, 150, 150, 0.1);
    color: var(--tertiary-creative-coral);
}

/* APPROVED */
.request-table-card .badge-status-approved {
    background-color: var(--secondary-guiding-green1);
    color: var(--white);
    border-color: var(--secondary-guiding-green1);
}

/* DENIED */
.request-table-card .badge-status-denied {
    background-color: rgba(184, 150, 150, 0.1);
    color: var(--tertiary-creative-coral);
    border-color: var(--tertiary-creative-coral);
}

/* RESOLVED */
.request-table-card .badge-status-resolved {
    background-color: rgb(204, 240, 230);
    color: var(--secondary-guiding-green1);
    border-color: var(--secondary-guiding-green1);
}

/* PENDING*/
.request-table-card .badge-status-pending {
    background-color: rgb(248, 226, 161);
    color: #000;
    border-color: var(--tertiary-confident-gold)
}
.request-table-card .badge-status-rejected {
    background-color: rgba(241, 95, 92, 0.4);
    color: var(--tertiary-creative-coral);
    border-color: var(--tertiary-creative-coral);
}

.request-table-card table tbody tr:last-child td {
    border-bottom: none;
}

.servicemodal .modal-footer {
    border:none;
}
.service-request-card .justify-items-end{
    justify-content: end;
}
.point-badge .icon{
    font-size: 0.8rem;
}
.service-request-table .badge{
    font-size: 0.8rem;
}
.service-request-table .btn-aprove{
    background: var(--secondary-guiding-green);
    border: 1px solid var(--secondary-guiding-green);
    border-radius: 8px;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'brother_1816medium';
    line-height: 1.5;
    padding: 5px 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transition: background .3s ease-in, color .3s ease-in, border-color .3s ease-in;
    transition: background .3s ease-in, color .3s ease-in, border-color .3s ease-in;
    text-decoration: none;
    max-width: fit-content;
}
.service-request-table .btn-reject{
    background: var(--tertiary-creative-coral);
    border: 1px solid var(--tertiary-creative-coral);
    border-radius: 8px;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'brother_1816medium';
    line-height: 1.5;
    padding: 5px 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transition: background .3s ease-in, color .3s ease-in, border-color .3s ease-in;
    transition: background .3s ease-in, color .3s ease-in, border-color .3s ease-in;
    text-decoration: none;
    max-width: fit-content;
}
.service-request-top-card .badge{
    font-size: 0.7rem;
}
.service-request-top-card  .card-value{
    font-size: 1.2rem;
    font-weight: 600;
}
.service-request-table td, .service-request-table div{
    font-size: 0.9rem;
}
@media (max-width: 576px) {
    .request-table-card table th:nth-child(3),
    .request-table-card table th:nth-child(4),
    .request-table-card table td:nth-child(3),
    .request-table-card table td:nth-child(4) {
        white-space: nowrap;
    }

}

@media (max-width: 768px) {

    .service-requests .title {
        font-size: 1.4rem;
    }

    .service-request-card .row {
        gap: 12px;
    }

    .service-request-card .col-md-4,
    .service-request-card .col-md-2,
    .service-request-card .col-md-6 {
        width: 100%;
    }

    .btn-filter,
    .btn-new-request {
        width: 100%;
    }

    .btn-new-request {
        justify-content: center;
    }

    .search-input input {
        height: 40px;
    }

    .request-table-card table {
        font-size: 13px;
    }

    .request-table-card table td,
    .request-table-card table th {
        padding: 12px 10px;
    }

    .request-table-card table td small {
        font-size: 11px;
    }

    .request-table-card .badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .request-table-card a {
        font-size: 13px;
    }

    .servicemodal .modal-content {
        border-radius: 12px;
    }

    .servicemodal .modal-body {
        padding: 1rem;
    }

    .servicemodal .modal-footer {
        padding: 0.75rem 1rem;
    }
    .service-request-card .justify-items-end{
        justify-content: center;
    }
    .service-request-card .btn-primary{
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
}
/* style for service request page end */
.flip-countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
    margin-top: 10px;
}
.flip-unit {
    text-align: center;
}
.flip-card {
    width: 50px;
    height: 50px;
    perspective: 1000px;
}
.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}
.flip-card.flip .flip-inner {
    transform: rotateX(180deg);
}
.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(145deg, #3b6d9c, #2b4f75); */
    background: linear-gradient(145deg, #00739d, #004d69);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    backface-visibility: hidden;
}
.flip-back {
    transform: rotateX(180deg);
}
.flip-unit small {
    display: block;
    margin-top: 10px;
    font-size: 0.7rem;
    color: var(--white);
    font-weight: bold;
}
@media (max-width: 576px) {
    .flip-countdown-wrapper {
        display: none;
    }
}
