body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}

.text-gray-600 {
    color: #666;
}

.text-gray-800 {
    color: #333;
}

.rounded-lg {
    border-radius: 8px;
}


.container-username {
    max-width: 1250px;
    margin: 1rem auto;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

  .loader {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-top: 4px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .hidden {
            display: none;
        }
        .icon {
            font-size: 48px;
            margin-bottom: 10px;
        }
        
        .text {
            font-size: 16px;
            line-height: 1.5;
        }

.h1 {
    font-size: 35px;
    margin-bottom: 20px;
}


/* General Step Class */
.step {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    max-width: 100%; /* Ensure the step container does not overflow */
    box-sizing: border-box; /* Include padding and border in element's width and height */
    overflow: hidden; /* Prevent content overflow */
}

.step-title {
    font-size: 24px;
    margin-top: 15px;
}

/* Step Description */
.step-description {
    font-size: 16px;
    color: #666;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .step {
        padding: 15px;
        margin-bottom: 20px;
        max-width: 100%; /* Ensure the step container does not overflow */
        overflow-x: hidden; /* Prevent horizontal overflow */
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 14px;
    }
}


.feedback{
    

margin-top:10px;
max-width:1200px;
width:100%;
background-color:white;
padding:20px;
border-radius:10px;
}