:root {
    --primary-color: #282D58;
    --secondary-color: #971B1E;
    --bs-table-bg: #282D58 !important;
    --font-size: 16px;
}

body, html{
	font-family: 'Poppins', "sans-serif;";
	margin: 0;
	height: 100vh;
}
.bg-primary-color{
	background-color: var(--primary-color) !important;
}
.sidebar {
	  position: fixed;
      height: 100vh;
      width: 250px;
      background-color: var(--primary-color);
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .sidebar .logo img {
      width: 100%;
      height: auto;
      max-width: 150px;
    }
    .sidebar .user-info {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 20px;
      margin-bottom: 30px;
    }
    .sidebar .user-info .fa-user {
      font-size: 25px;
      margin-right: 10px;
      background-color: #fff;
      color: var(--primary-color);
      padding: 10px;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .sidebar .user-info .details {
      color: white;
    }
    .sidebar .nav-link {
      color: white;
      margin-bottom: 15px;
      transition: all 0.1s ease;
    }
    .sidebar .nav-link:hover {
      background-color: rgba(255, 255, 255, 1.0);
	  color: var(--secondary-color);
	  border-top-left-radius: 30px;
	  border-bottom-left-radius: 30px;
	  margin-right: -20px;
    }
    .sidebar .active{
    	background-color: rgba(255, 255, 255, 1.0);
	  color: var(--secondary-color);
	  border-top-left-radius: 30px;
	  border-bottom-left-radius: 30px;
	  margin-right: -20px;
    }
    .sidebar .logout-btn {
      text-align: center;
      color: white;
      padding: 10px 0;
      background-color: transparent;
      border: none;
      font-size: 18px;
    }
    .sidebar .logout-btn i {
      margin-right: 10px;
    }
    .sidebar .logout-btn:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 5px;
    }
    .main-content{
    	flex-grow: 1;
    	margin-left: 300px;
    	padding-bottom: 100px;
    }
    .page-header{
		background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	    margin: 60px auto;
	    width: 100%;
	    border-radius: 15px;
	    padding: 20px 50px;
	    color: #fff;
	    align-items: center;
    }
    .certificate-name{
    	font-size: 35px !important;
    	font-weight: 600 !important;
    }
    .certificate .certificate-name:after{
	    content: "";
	    display: inline-flex;
	    border-right: 2px solid #eee;
	    height: 114px;
	    margin-left: 40px;
    }
    .certificate span{
    	display: inline-flex;
    	align-items: center;
    }
    .page-title i, .certificate i {
    	background-color: #fff;
	    color: var(--secondary-color);
	    font-size: 25px;
	    width: 50px;
	    height: 50px;
	    display: inline-flex;
	    justify-content: center;
	    align-items: center;
	    border-radius: 50%;
	    margin-right: 10px;
    }
    .page-title span{
		font-size: 26px;
    	font-weight: 700;
    }
    .page-button a, .certificate button{
    	background-color: #fff;
    	border-radius: 20px;
    	font-weight: 600;
    	color: var(--secondary-color);
    	border: none;
    	padding: 10px 30px;
    	box-shadow: 0 0 10px rgb(0,0,0,0.2);
    }
    .page-button button:hover, .certificate button:hover{
    	background-color: var(--primary-color);
    }
    .pr7{
    	padding-right: 7rem;
    }
    .page-heading{
    	    color: var(--secondary-color);
    font-size: 17px;
    font-weight: 700;
    }
    .cards{
    	display: flex;
    	gap: 3rem;
    	margin-bottom: 50px;
    }
    .card{
    	background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    	width: 100%;
    	display: flex;
    	justify-content: center;
    	align-items: center;
    	flex-direction: row;
    	color: #fff;
		gap: 20px;
		padding: 20px 10px;
	    border-radius: 20px;
	    box-shadow: 0 10px 10px rgb(0,0,0,0.6);
    }
    .card i{
    	font-size: 60px;
    	color: #fff;
    	width: 50px;
    	height: 50px;
    	display: inline-flex;
    	justify-content: center;
    	align-items: center;
    }
    .card a{
    	color: #fff;
    	font-size: 14px;
    	font-style: italic;
    }

    .invoice-logo img{
    	max-width: 200px;
    }
    .invoice-heading h2{
    	font-weight: 700;
    }
    .invoice-body{
    	margin-top: 20px;
    	--bs-gutter-x: 0;
    }
    .invoice-body input{
    	border: 1px solid #000;
    	width: 100%;
    	padding: 10px;
    }
    .invoice-body textarea{
    	width: 100%;
    }
    .invoice-label{
    	background-color: var(--secondary-color);
    	color: #fff;
    	text-align: left;
    	border: 1px solid #000;
    	padding: 10px;
    }
    .invoice-label em{
		font-style: normal;
		font-size: 12px;
    }
    .other-label{
    	font-size: 25px;
    	color: #000;
    	font-weight: 600;
    	margin-top: 20px;
    }
    .other-label em{
    	display: block;
    	font-size: 17px;
    	font-weight: 400;
    }
    .invoice-items table{
    	border: 1px solid;
    	margin-top: 20px;
    }
    .invoice-items td{
    	border: 1px solid;
    	padding: 10px;
    }
    .invoice-items .head{
		background-color: var(--primary-color);
		padding: 10px;
    }
    .invoice-items .head td{
    	color: #fff;
    	border-color: #000;
    	border-right-color: #fff;
    }
    .sub-total table{
    	margin-top: 0;
    	width: 100%;
    }
    .sub-total span{
    	padding-bottom: 15px;
    }
    .signature{
		text-align: center;
    margin-top: 100px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    }
    .signature:before{
		    content: "";
    border-top: 1px solid #000;
    width: 20%;
    display: block;
    }
    .signature span{
    	margin-right: 18px;
    }
    .body-button{
    text-align: center;
    margin-top: 20px;
    }
    .body-button a{
        background: var(--secondary-color);
        border: none;
        border-radius: 20px;
        padding: 10px 30px;
        box-shadow: 0 10px 10px rgb(0, 0, 0, 0.4);
    }
    .body-button button:hover{
    	background-color: var(--primary-color);
    }

	.certificate{
		background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
	    margin: 60px auto;
	    width: 100%;
	    border-radius: 15px;
	    padding: 20px 50px;
	    color: #fff;
	    align-items: center;
    }
    .certificate span{
    	display: flex;
    }

    .small-text{
    	font-size: 12px;
    	font-weight: 300;
    	margin-bottom: 0;
    }
    .large-text{
    	font-size: 40px;
    	font-weight: 600;
    	display: block;
    }
.feedback {
	border-color: #000;
}
.feedback-textarea{
	--bs-border-color: #000;
	border-radius: 0 !important;
}

    /* Hide the default radio button */
.feedback input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #b0b0b0;
    border-radius: 4px; /* Rounded corners for square shape */
    display: inline-block;
    position: relative;
    cursor: pointer;
}

/* Style for when the radio button is selected */
.feedback  input[type="radio"]:checked {
    background-color: #007bff;
    border-color: #007bff;
}

/* Create a checkmark when selected */
.feedback  input[type="radio"]:checked::before {
    content: '✓'; /* Checkmark symbol */
    font-size: 16px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hover effect for the radio button */
.feedback input[type="radio"]:hover {
    border-color: #007bff;
}
