/* Back to top button style */
.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

.image-size-dimens-main-logo {
  width: 60px;
  height: 60px;
  margin: 5px;
}

.image-size-dimens-1 {
  width: 200px;
  height: 150px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.image-size-dimens-2 {
  width: 320px;
  height: 150px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.text-light-small {
  color: #B8B8B8;
  font-size: 12px;
}

.a-menu-view {
  display: inline-block;
  color: black;
}

/* Showing hover on a tag setting background color light grey when move cursor on a tag*/
a:hover {
  background-color: rgba(12, 5, 62, 0.15);
  color: black;
}

/* ------------- */
/* Card Styling */
.audit-card {
    background: linear-gradient(135deg, #003366, #005599);
    color: white;
    border-radius: 15px;
    text-align: center;
    padding: 25px;
    width: 320px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.audit-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

/* Circular Image */
.audit-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

/* Glassmorphism Effect */
.audit-card h5 {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

/* White Button Styling */
.btn-info-custom {
    background: white;
    color: #003366;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 5px;
    transition: all 0.3s ease-in-out;
}

.btn-info-custom:hover {
    background: #ffcc00;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0px 4px 10px rgba(255, 204, 0, 0.5);
}
