.proform_btn {
    color: rgb(5, 10, 75);
    background-color: aqua;
    margin-top: 2rem;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s ease; /* Add transition for smooth effect */
}

.proform_btn:hover {
    background-color: lightblue; /* Change background color on hover */
}

.proform_btn:active {
    transform: translateY(2px); /* Move button down slightly when clicked */
}
 
.proform_btn:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 3px rgba(0, 0, 255, 0.5); /* Add custom focus effect */
}

input {
    border-radius: 0px 0px 5px 5px !important;
}

#comment{
    border-radius: 0px 0px 5px 5px !important;
    width:100% !important; 
    height: 80px;
}

#comment-box{
    margin-top: 20px;
}

.form-group > label {
    font-size: .9rem;
    font-weight: 400;
    color: white;
    border-radius: 5px 5px 0px 0px;
    padding-left: 5px;
    background: #183883;
    display: block;
    /* padding: 5px;/ */
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.logo>img {
    width: 100px;
    height: auto;
}

.logo {
    display: flex;
    justify-content:flex-end;
    
}

body {
    background-color: #2554a3 !important;
}

#btnVoucher,
#btnNext,
#dwnVoucher {
    background-color: rgb(24 56 131);
    color: #efefef;
    font-size: 1.3rem;
    font-weight: bolder;
    text-shadow: 2px 2px 2px red, 0 0 1em rgb(24 56 131), 0 0 0.2em rgb(24 56 131);
}

.error {
    background: pink;
    color: red;
    border-radius: 5px;
    border: 2px solid red;
    padding: 5px;
    text-align: center;
}

.success {
    color: red;

}

.voucherImgHolder {
    border: dashed red 4px;
    border-radius: 15px;
    padding: 10px;
    background-color: cornsilk;
}

.voucherImg {
    border-radius: 10px;
    max-width: 100%;
}

.valid-feedback,
.invalid-feedback {
    display: none;
}

input:valid+.valid-feedback {
    display: block;
}

input:invalid+.invalid-feedback {
    display: block;
}

.container {
    margin: 50px auto;
    width: 80%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f5f5f5;
} */

.dataTables_wrapper {
    font-family: tahoma;
    font-size: 13px;
    position: relative;
    clear: both;
    zoom: 1;
}

@media (max-width: 568px) {
    label {
        font-size: 12px;
    }

    #dwmVoucher, #btnVoucher{
        font-size: 1.3rem;
    }

    .small {
        font-size: .7rem;
    }

    h5 {
        font-size: 1rem;
    }

    #response {
        font-size: .8rem;
    }
}

@media (min-width: 576px) {
    .logo {
        padding-top: 0;
    }
}

@media (min-width: 768px) {
    /* Styles for medium devices */
}

@media (min-width: 992px) {
    /* Styles for large devices */
}

.clickable-image {
    width: 100px; 
    height: 100px; 
    border-radius: 50%; /* Make the image circular */
    box-shadow: inset 5px 5px 10px rgba(104, 53, 53, 0.2), /* Inner bevel shadow */
                5px 5px 15px rgba(0, 0, 0, 0.3); /* Outer shadow for depth */
    cursor: pointer; /* Make the image appear clickable */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover effect */
  }
  
  .clickable-image:hover {
    transform: translateY(-3px); /* Slightly lift the image on hover */
    box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.25), /* Darker inner shadow */
                7px 7px 15px rgba(0, 0, 0, 0.4); /* Darker outer shadow */
  }
  
  .clickable-image:active {
    transform: translateY(1px); /* Slightly depress the image when clicked */
    box-shadow: inset 5px 5px 10px rgba(45, 11, 214, 0.35), /* Darker inner shadow on click */
                4px 4px 10px rgba(0, 0, 0, 0.2); /* Lighter outer shadow on click */
  }
  