html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 20vh;
}

.card-button {
    position: relative; /* Position relative for absolute positioning of the badge */
    width: 150px;
    height: 150px;
    background-color: white;
    color: #FF3366; /* Match the text color as in the image */
    font-size: 2em;
    text-align: center;
    line-height: 150px; /* Center text vertically */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Initial shadow */
    border-radius: 10px; /* Slightly rounded corners */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    cursor: pointer;
}

    .card-button:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
        transform: translateY(-5px); /* Rise up on hover */
    }

.close-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-color: #FF3366; /* Red background for the badge */
    color: white; /* White color for the "X" */
    font-size: 16px;
    line-height: 20px; /* Center the "X" vertically */
    text-align: center;
    border-radius: 50%; /* Circular shape */
    cursor: pointer;
}

.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: table;
    transition: opacity 0.3s ease;
}

.disabled-div {
    pointer-events: none; /* Disable mouse events */
    opacity: 0.5;
}

.transparency {
    opacity: 0.5;
}

/* Style for the input field */
.underline-input {
    border: none; /* Remove default border */
    border-bottom: 1px solid #ccc; /* Add underline */
    padding: 5px 0; /* Add padding as needed */
    width: 100%; /* Set width as needed */
    box-sizing: border-box; /* Include padding and border in total width */
    outline: none; /* Remove outline when focused */
}

    /* Optional: Hover and focus styles */
    .underline-input:hover,
    .underline-input:focus {
        border-bottom-color: blue; /* Change underline color on hover/focus */
    }

.fa-size-13 {
    font-size: 1.3em;
}

.faicon-size-15 {
    font-size: 1.5em;
}

.faicon-size-15 {
    font-size: 1.5em;
}

.hover-bold:hover {
    font-weight: bold;
}