 body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}
 
 .container-movie {
             max-width: 1250px;
            margin: 1rem auto;
            padding: 0.5rem;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            animation: fadeIn 1s ease-in-out;
        }

        .loader {
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top: 4px solid #000;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            outline: none;
            transition: transform 0.2s ease, color 0.3s;
        }

        .icon-btn:hover {
            transform: scale(1.1);
            color: red;
        }

       


        .icon-btn:hover  {
            visibility: visible;
            opacity: 1;
        }

        .form-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .form-group>div {
            flex: 1;
        }

        .form-group .small-input {
            max-width: 300px;
        }

        @media (max-width: 768px) {
            .form-group {
                flex-direction: column;
            }
        }
        
        /* Container for title and icons */
.title-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Title text styling */
.title-item p {
    margin: 0;
    flex-grow: 1;
}

/* Icon container for better alignment */
.icon-containerr {
    display: flex;
    gap: 10px; /* Adjust gap between icons */
}

.icon-btn {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: 1.2rem; /* Adjust icon size if necessary */
    transition: transform 0.2s ease, color 0.3s;
}

.icon-btn:hover {
    transform: scale(1.1);
    color: #ff6347; /* Change hover color if desired */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .icon-container {
        margin-top: 8px; /* Add space between text and icons on smaller screens */
        justify-content: flex-start;
    }
}


.text-gray-600 {
    color: #666;
}

.text-gray-800 {
    color: #333;
}

.rounded-lg {
    border-radius: 8px;
}
.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;
    }
}
.btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    
}
    .icon {
        font-size: 36px;
        margin-bottom: 10px;
        transition: transform 0.3s ease;
    }
    
a {
    text-decoration: none;
}
    

   
.feedback{
    margin-top:10px;
max-width:1200px;
width:100%;
background-color:white;
padding:20px;
border-radius:10px;
}


        .icon {
            font-size: 48px;
            margin-bottom: 10px;
        }
        
        .text {
            font-size: 16px;
            line-height: 1.5;
        }
