* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: url('./bg.png');
    background-size: 100% 100%;
    backdrop-filter: blur(10px);
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.236);
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 100%;
}

header {
    margin-bottom: 20px;
}

header h1 {
    font-size: 2rem;
    color: #fff;
}

header h1 span {
    color: #e74c3c;
}

#imageInput {
    display: none;
}

.custom-file-label,
#clearQueueBtn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-file-label {
    background: linear-gradient(-45deg, #f244a1 10%, #f89431 100%);
    color: #fff;
}

.custom-file-label:hover {
    background: linear-gradient(45deg, #df2c8b 10%, #d86c00 100%);
}

#clearQueueBtn {
    background: linear-gradient(45deg, #f244a1 10%, #f89431 100%);
    color: #fff;
}

#clearQueueBtn:hover {
    background: linear-gradient(-45deg, #df2c8b 10%, #d86c00 100%);
}

#convertBtn {
    background: linear-gradient(45deg, #ec0202, #e0a91e, #3bdb06, #7400f8);
    background-size: 400% 400%;
    animation: gradientButton 1s ease infinite;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 16px;
}

#convertBtn:hover {
    background: linear-gradient(135deg, #43A047 10%, #66BB6A 100%);
}

.pddf{
    color:#018813;
}
.pdff{
    color:#a2053c;
}
.image-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.image-list .image-container {
    position: relative;
    margin: 10px;
}

.image-list img {
    max-width: 150px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-list .remove-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.image-list .remove-icon:hover {
    background: darkred;
}

label,
button {
    font-variant: small-caps;
    font-weight: 700;
    font-size: 20px;
}

.credits {
    font-size: 20px;
    color: #FFA500;
    margin-bottom: 10px;
    opacity: 0.8;
    font-weight: 600;
    position: fixed;
    bottom: 20px;
    backdrop-filter: blur(80px);
    font-family: arial;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-text-stroke: #000080b1 0.3px;
    background-color: #fff1;
    border-radius: 5px;
    position: fixed;
    bottom: 5PX;
}

@keyframes gradientButton {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
