.clickable-row { cursor: pointer; border: 1px solid #ededed; }
.fraudlist tr:nth-child(even){background-color: #f2f2f2;}
.fraudlist .clickable-row:hover {
  background-color: #e9f5ff;
}
.fraudlist th { text-align: left; }
.fraudlist td, th { padding-top: 5px; padding-bottom: 5px; }
.fraudlist table { border-collapse: collapse; }
.registerForm td {
    padding:5px;
}
.form-label {
    cursor: pointer;
}
.vertical_centered {
    visibility: hidden;
    vertical-align: middle; margin-bottom:3px; display:inline-block;
}
a, a:visited {
  text-decoration: none;
  color: #000000;
}
.form-control {
border: 1px solid rgb(222, 226, 230);
border-radius: 6px;
padding-top: 6px;
padding-bottom: 6px;
padding-left: 12px;
padding-right: 12px;
box-shadow: rgba(13, 110, 253, 0);
transition: border-color 0.3s ease-in-out;
}
.form-control:focus {
    border-color: #007bff; /* Highlight color when focused */
    outline: none; /* Remove default browser outline */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Optional: add a subtle glow */
}
.fraudreport td { vertical-align: top; }

#drop-zone {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}

#drop-zone.drag-over {
  border-color: #007bff;
  background-color: #e9f5ff;
}
.fraudForm td {
    padding:5px;
}
.form-label {
    cursor: pointer;
}
.btn:visited {
    color: #ffffff;
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out,
              background-color 0.15s ease-in-out,
              border-color 0.15s ease-in-out,
              box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.btn-primary:focus {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}

.btn-primary:active {
  color: #fff;
  background-color: #0a58ca;
  border-color: #0a53be;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}


* {
  box-sizing: border-box;
}

/* Style the body */
body, td {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0;
}

/* Header/logo Title */
.header {
  padding: 20px;
  text-align: center;
  /* background: #1abc9c;
  color: white; */
}
.header a { text-decoration: none; }

/* Style the top navigation bar */
.navbar {
  display: flex;
  background-color: #333;
}

/* Style the navigation bar links */
.navbar a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Column container */
.row {  
  display: flex;
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {
  flex: 70%;
  background-color: white;
  padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row, .navbar {   
    flex-direction: column;
  }
}