body {
    background-color: #f8f9fa;
}

.navbar {
    margin-bottom: 40px;
}

h2 {
    margin-bottom: 30px;
}

.btn {
    font-size: 18px;
    padding: 10px 20px;
}

.list-group-item {
    font-size: 18px;
}

.table td, .table th {
    vertical-align: middle;  /* Vertically align the text */
}

/* Custom rounded corners for the table */
.table-wrapper {
    border-radius: 9px;
    overflow: hidden; /* Keep content inside the rounded corners */
    border: none; /* Remove border to avoid conflicts */
    background-color: #ffffff; /* Ensure a uniform background for the table */
}

.d-flex.justify-content-between {
    margin-bottom: 0px;  /* Add some space below the buttons */
}

.btn-custom-sm {
    padding: 0.25rem 0.5rem; /* Smaller padding */
    font-size: 0.875rem;     /* Smaller font size */
    line-height: 1.25;       /* Adjusted line height */
}

.custom-bg {
    background-color: rgba(158, 186, 213, 0.71); /* 90% opacity with a blue color */
    padding: 20px; /* Add padding for spacing */
    border-radius: 0.5rem; /* Rounded corners for a smoother look */
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #333;
}
h1, h2, h3 {
  font-family: 'Roboto Slab', serif;
  margin-bottom: 20px;
  color: #222;
}

footer {
    background-color: #343a40; /* Dark background */
    color: #fff; /* White text */
    padding:10px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}


footer {
    background-color: #222;  /* Dark background color */
    color: #fff;             /* Light text color */
    padding: 20px 0;         /* Padding for the footer */
}

footer a {
    color: #ddd;             /* Lighter color for links */
}

footer a:hover {
    color: #fff;             /* Brighter color on hover */
}

footer p {
    margin-bottom: 0;
}

.btn-light-custom {
    background-color: #d6d8db; /* A darker shade of the default light button */
    color: #000; /* Use black for text color to maintain readability */
    border-color: #c6c8cb; /* Slightly darker border to match the button */
}

.btn-light-custom:hover {
    background-color: #c8cacd; /* Darker color on hover */
    border-color: #b8babd;
}

.btn-light-custom:active, .btn-light-custom:focus {
    background-color: #babcbf; /* Even darker when clicked or focused */
    border-color: #aeb0b3;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); /* Optional shadow for focus */
}

.table-primary-heading {
    background-color: #5489da !important;
    color: black !important;
}

.table-primary-subheading {
    background-color: #89abe0 !important;
    color: black !important;
}

/* Custom table borders for vertical lines between columns */
.table-bordered-custom th, .table-bordered td {
    border-right: 1px solid #1c2028;
    border-left: 1px solid #171c1f;
}

.table-bordered-custom tbody tr td:first-child,
.table-bordered-custom thead tr th:first-child {
    border-left: none; /* Remove the left border for the first column */
}

.table-bordered-custom tbody tr td:last-child,
.table-bordered-custom thead tr th:last-child {
    border-right: none; /* Remove the right border for the last column */
}

.normal-text {
    font-weight: normal; /* Ensure the text is not bold */
}


/* Expand the width of the first container inside block content */
.container-custom {
  width: 106%;
  max-width: 103%;
  padding-left: 9px;
  padding-right: 0px;
  margin-left: -12px;
  margin-right: 9px;
}

.event-logs-container {
    margin-top: 20px;
    padding: 10px;
    background-color: #5489da;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.scrollable-box {
    max-height: 200px; /* Adjust the height as needed */
    overflow-y: auto;
    padding: 10px;
    border: 2px solid #0757d3;
    border-radius: 5px;
    background-color: #e8e4e4;
}

.scrollable-box ul {
    list-style-type: none;
    padding: 0;
}

.scrollable-box li {
    margin-bottom: 8px;
}

/* Optional: Add padding and style for each log entry */
.log-entry {
    padding: 8px;
    border-bottom: 1px solid #dee2e6; /* Optional: Separate log entries with a border */
}

.log-entry:last-child {
    border-bottom: none; /* Remove border for the last entry */
}

.black-link {
    color: black;
    text-decoration: underline; /* Remove the underline */
}

.black-link:hover {
    text-decoration: none; /* Optional: Add underline on hover */
}

.slots-transfer-container {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
}