
body {
    font-family: 'Poppins', sans-serif;
    background: #010e25;
    color: #fff;
}

.uploader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #1a1a2e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.input-helper {
    text-align: center;
}

.upload-input {
    position: relative;
    cursor: pointer;
    border: 2px dashed #4e4e7a;
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

.upload-input:hover {
    border-color: #4f9dff;
}

.upload-input img {
    position: relative;
    max-width: 100%;
    max-height: 150px;
    transition: transform 0.3s ease;
}

.upload-input input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.repeat-icon img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.repeat-icon img:hover {
    transform: rotate(180deg);
}

.input-helper p {
    color: #b3b3cc;
}

.input-helper img {
    max-width: 100%;
    margin-bottom: 10px;
    opacity: 0.8;
}

.swap-button {
    width: 300px;
    /* Increase width as needed */
    border-radius: 25px;
    /* Adds rounded corners */
    font-size: 16px;
    /* Adjust font size for better readability */
    padding: 10px 20px;
    /* Adjust padding for a more substantial feel */
    transition: background-color 0.3s ease, transform 0.3s ease;
    /* Adds smooth transition on hover */
}

.swap-button:hover {
    background-color: #0056b3;
    /* Change button color on hover */
    transform: scale(1.05);
    /* Slightly enlarges the button on hover */
}
