.btn-no-border {
  border: none
}
.item-btn-margins {
  margin-left: 10px;
  margin-right: 6px;
}
.menu-btn-margins {
  margin-right: 6px;
}
.text-enodo-green {
    color: #4eb795 !important;
}

/* Dark theme for the modal */
.modal-content {
    background-color: #2c2c2c; /* Dark background */
    color: #ffffff; /* Light text */
    border: 1px solid #444; /* Subtle border */
}

.modal-header, .modal-footer {
    background-color: #1e1e1e; /* Darker header and footer */
    border-bottom: 1px solid #444; /* Border for header */
    border-top: 1px solid #444; /* Border for footer */
}

.modal-title {
    color: #ffffff; /* Light text for the title */
}

.btn-primary {
    background-color: #007acc; /* Blue button */
    border-color: #007acc;
}

.btn-secondary {
    background-color: #444; /* Dark gray button */
    border-color: #444;
    color: #ffffff; /* Light text */
}

.form-control {
    background-color: #333; /* Dark input fields */
    color: #ffffff; /* Light text in input fields */
    border: 1px solid #555; /* Subtle border for inputs */
}

.form-control:focus {
    background-color: #444; /* Slightly lighter on focus */
    color: #ffffff;
    border-color: #007acc; /* Blue border on focus */
    box-shadow: none; /* Remove default shadow */
}