/* Style for the spinner background */
#spinner {
    background-color: #ffffff;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Logo container to apply animation */
.logo-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 2s ease-in-out 3; /* Bounce animation */
}

/* Style for the logo */
.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: fadeIn 2s ease forwards;
}

/* Bounce keyframe animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-50px);
    }
    60% {
        transform: translateY(-30px);
    }
}

/* Fade-in keyframe animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.attribute-list {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Add some spacing between columns if needed */
}

.attribute-list {
    display: flex;
    flex-direction: column; /* To ensure the attributes are in column layout */
}

.attribute-list div {
    margin-bottom: 5px; /* Add space between each attribute */
}

.gradient-header {
    background: linear-gradient(109deg, rgba(231,58,96,1) 0%, rgba(237,93,50,1) 100%);
    color: white; /* Ensure the text is readable */
    padding: 15px;
    transition: background 1s ease; /* Smooth transition of background color */
}

.gradient-header.fade-out {
    background: linear-gradient(109deg, rgba(231,58,96,0.6) 0%, rgba(237,93,50,0.6) 100%); /* Faded version */
}


