.autosuggest-dropdown {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.suggestion {
    padding: 8px 12px;
    cursor: pointer;
}

.span-hover:hover {
    cursor: pointer;
}

.suggestion:hover {
    background-color: #f0f0f0;
}

.suggestion.disabled {
    color: grey;
    pointer-events: none;
    cursor: not-allowed;
}

.animal-data:hover {
    background-color: #cbc9c9;
    cursor: pointer;
}
#screen-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 248, 248, 0.4);
    z-index: 9999;
}

#loading-overlay {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(248, 248, 248, 0.4);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}

.spinner-row {
    display: flex;
    flex-direction: column;
}

.spinner-col {
    display: flex;
    justify-content: center;
}

.page-loading {
    font-size: 40px;
    color: #000 !important;
    margin: 5px; /* Adjust margin to control spacing between paws */
    animation: walk 1s linear infinite;
}

.page-loading:nth-child(1) {
    animation-delay: 0s;
}

.page-loading:nth-child(2) {
    animation-delay: 0.2s; /* Adjust delay for second paw */
}

.page-loading:nth-child(3) {
    animation-delay: 0.4s; /* Adjust delay for third paw */
}

.page-loading:nth-child(4) {
    animation-delay: 0.6s; /* Adjust delay for fourth paw */
}

@keyframes walk {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}




.full-height-container {
    max-width: 800px;
    max-height: 800px;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.onboarding-card {
    max-width: 800px;
    max-height: 3000px;
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    margin: auto;
}

.popup {
    position: fixed;
    right: 20px;
    width: 300px;
    background-color: green;
    color: white;
    border-radius: 10px 10px 10px 10px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 10px;
    background-color: darkgreen;
    border-radius: 10px 10px 0 0;
}

.popup-header h2 {
    margin: 0;
    font-size: 18px;
    color: white;
}

.popup-content {
    padding: 15px;
}

@media (max-width: 600px) {
    .popup {
        width: 100%;
        top: 0;
        right: 0;
        border-radius: 0;
    }

    .popup-header {
        border-radius: 0;
    }
}

/* Additional styles for success and error alerts */
.success-alert {
    background-color: #219653;
}

.danger-alert {
    background-color: #d50100;
}

.success-alert .popup-header {
    background-color: #219653;
}

.danger-alert .popup-header {
    background-color: #d50100;
}

/* quick links */
.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 5px;
    margin: 5px;
}
.quick-link i {
    font-size: 36px;
    margin-bottom: 10px;
}
.quick-link span {
    font-size: 18px;
}
/* Default for larger screens */
@media (min-width: 1200px) {
    .quick-link {
        width: calc(100% / 6 - 10px);
    }
}
/* For medium screens */
@media (min-width: 768px) and (max-width: 1199px) {
    .quick-link {
        width: calc(100% / 4 - 10px);
    }
}
/* For small screens */
@media (min-width: 576px) and (max-width: 767px) {
    .quick-link {
        width: calc(100% / 2 - 10px);
    }
}
/* For extra small screens */
@media (max-width: 575px) {
    .quick-link {
        width: calc(100% / 2 - 10px);

    }
}

.reset-password {
    text-decoration: none !important;
    color: #5d657b !important;
    cursor: pointer;
}

