/* General styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
}

.home-content {
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

/* Header styles */
.home-content h1 {
    font-size: 24px;
}

.home-content p {
    font-size: 14px;
}

/* Animation styles */
.intro-up {
    animation: fade-up 0.5s;
}

.intro-down {
    animation: fade-down 0.5s;
}

.box-container {
    text-align: center; /* Center the content horizontally */
    position: relative; /* Add position relative for absolute positioning */
}

.box {
    border: 2px solid rgb(0, 0, 0);
    padding: 10px;
    margin: 20px auto;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
}

.no-data-message {
    text-align: center;
    padding: 20px;
    font-size: 10px;
}

/* Text button styles */
.refresh-text {
    display: inline-block;
    padding: 10px 20px;
    margin: 0.1px auto;
    cursor: pointer;
    border: 2px solid black;
    border-radius: 5px;
    max-width: 200px;
}

/* Entry styles */
.entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.entry img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.entry p {
    margin: 0;
    flex: 1;
    text-align: center;
}

.reason {
    margin-left: 20px;
}

.line {
    border-top: 1px solid black;
}

.dropdown-wrapper {
    width: 100%; /* Take up full width */
    position: absolute; /* Position relative to parent */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    right: 0; /* Align to the right */
}

.dropdown-container {
    margin-top: 5px; /* Add margin-top */
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
}

/* Style the label */
.dropdown-container label {
    margin-right: 10px; /* Add margin-right to create space between label and select */
}

select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #272727;
    border-radius: 5px;
    background-color: #161616;
    color: #7e7e7e;
    appearance: none;
    -webkit-appearance: none;
}

/* Style the dropdown when focused */
.select-hover:hover select {
    border-color: #666; /* Change border color on hover */
}

select:focus {
    outline: none; /* Remove default focus outline */
    border-color: #666; /* Change border color when focused */
}

select option {
    padding: 10px;
    font-size: 16px;
    background-color: #161616; /* Background color */
    color: #7e7e7e; /* Text color */
    border-bottom: 1px solid #272727; /* Border bottom */
}

/* Style the dropdown option on hover */
select option:hover {
    background-color: #333; /* Background color on hover */
    color: #fff; /* Text color on hover */
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: max-content;
    border: 1px solid #4b4b4b; /* Add light grey border */
    background-color: #181818;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    top: -45px; /* Adjust as needed for vertical positioning */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px; /* Half the width of the triangle */
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent; /* Adjust color as needed */
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.spacer {
    margin-left: 20px; /* Add margin-left to create space between dropdowns */
}


/* Animation keyframes */
@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(+30px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@keyframes fade-down {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}
