table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  font-family: 'Poppins', sans-serif;	
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
  font-size: 12px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

thead {
  background-color: #333333; /* Dark background */
  color: white; /* Light text for contrast */
}

.img-30 {
	height: 30px;
	width: 30px;
}

/** Table hover action button start **/
.actions-cell {
    position: relative;
    /* width: 1px; Remove this or replace with min-width */
    min-width: 40px; /* Adjust as needed */
    padding: 5px; /* Add padding if needed */
    border: 1px solid #dee2e6; /* Add the border here or where appropriate*/
    white-space: nowrap;
}

.actions-trigger {
    cursor: pointer;
    padding: 5px;
	text-align: center;
}

.actions-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    visibility: hidden;
    white-space: nowrap;
    background-color: rgba(250, 250, 250, 0.9);
    padding: 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #061602;
    z-index: 10;
}

.actions-trigger:hover + .actions-container,
.actions-container:hover {
    visibility: visible;
}

.actions-container a {
    margin: 0 5px;
    color: #333;
    text-decoration: none;
}

.actions-container a:hover {
    color: #007bff;
}

.actions-container a.text-danger {
    color: #d9534f;
}

.actions-container a.text-danger:hover {
    color: #c9302c;
}

/** Table hover action button end **/