.reecycle-wrapper {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
}

.reecycle-camera {
    text-align: center;
    margin-bottom: 20px;
}

.reecycle-camera-button {
    width: 120px;
    height: 120px;
    background: #3fae49;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    cursor: pointer;
}

.reecycle-fields input {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.reecycle-submit {
    width: 100%;
    background: #222;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
}
.reecycle-success {
    background: #e9f9ed;
    border: 1px solid #3fae49;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    text-align: center;
    color: #1c5d27;
    font-weight: 600;
}
#reecycle-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.reecycle-preview-item {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.reecycle-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reecycle-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.reecycle-camera-text {
    margin-top: 12px;
    font-weight: 600;
    color: #444;
}

.reecycle-camera-button {
    transition: all 0.2s ease;
}

.reecycle-camera-button:hover {
    transform: scale(1.05);
}

.reecycle-wrapper {
    padding-bottom: 60px;
}
/*
|--------------------------------------------------------------------------
| Upload Overlay
|--------------------------------------------------------------------------
*/

#reecycle-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(255,255,255,0.92);

    z-index: 999999;

    display: flex;

    align-items: center;

    justify-content: center;
}

/*
|--------------------------------------------------------------------------
| Loader Box
|--------------------------------------------------------------------------
*/

.reecycle-loader {

    text-align: center;
}

/*
|--------------------------------------------------------------------------
| Spinner
|--------------------------------------------------------------------------
*/

.reecycle-spinner {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    border: 6px solid #e5e7eb;

    border-top: 6px solid #22c55e;

    animation: reecycleSpin 1s linear infinite;

    margin: 0 auto 20px auto;
}

@keyframes reecycleSpin {

    0% {

        transform: rotate(0deg);
    }

    100% {

        transform: rotate(360deg);
    }
}

/*
|--------------------------------------------------------------------------
| Loader Text
|--------------------------------------------------------------------------
*/

.reecycle-loader-text {

    font-size: 20px;

    font-weight: 600;

    color: #111827;
}

/*
|--------------------------------------------------------------------------
| Disable While Uploading
|--------------------------------------------------------------------------
*/

body.reecycle-uploading {

    overflow: hidden;
}

body.reecycle-uploading #reecycle-form {

    pointer-events: none;

    opacity: 0.7;
}
/*
|--------------------------------------------------------------------------
| Upload Progress
|--------------------------------------------------------------------------
*/

#reecycle-progress-wrapper {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(255,255,255,0.92);

    z-index: 999999;

    display: flex;

    align-items: center;

    justify-content: center;
}

#reecycle-progress-box {

    width: 90%;

    max-width: 420px;

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    text-align: center;
}

#reecycle-progress-title {

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 20px;

    color: #111827;
}

#reecycle-progress-bar {

    width: 100%;

    height: 18px;

    background: #e5e7eb;

    border-radius: 999px;

    overflow: hidden;

    margin-bottom: 15px;
}

#reecycle-progress-fill {

    width: 0%;

    height: 100%;

    background: linear-gradient(
        90deg,
        #22c55e,
        #16a34a
    );

    transition: width 0.4s ease;
}

#reecycle-progress-percent {

    font-size: 18px;

    font-weight: 700;

    color: #15803d;
}
/*
|--------------------------------------------------------------------------
| Install Banner
|--------------------------------------------------------------------------
*/

#reecycle-install-banner {

    position: fixed;

    bottom: 20px;

    left: 20px;

    right: 20px;

    background: #111827;

    color: #fff;

    border-radius: 18px;

    padding: 20px;

    z-index: 999999;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.reecycle-install-title {

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 8px;
}

.reecycle-install-text {

    font-size: 15px;

    opacity: 0.9;

    margin-bottom: 18px;
}

.reecycle-install-buttons {

    display: flex;

    gap: 10px;
}

#reecycle-install-btn {

    flex: 1;

    border: none;

    background: #22c55e;

    color: #fff;

    padding: 14px;

    border-radius: 12px;

    font-weight: 700;

    cursor: pointer;
}

#reecycle-install-close {

    flex: 1;

    border: none;

    background: #374151;

    color: #fff;

    padding: 14px;

    border-radius: 12px;

    cursor: pointer;
}

/*
|--------------------------------------------------------------------------
| iPhone Install
|--------------------------------------------------------------------------
*/

#reecycle-ios-install {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.65);

    z-index: 999999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;
}

.reecycle-ios-content {

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    max-width: 420px;

    width: 100%;

    text-align: center;
}

#reecycle-ios-close {

    margin-top: 20px;

    border: none;

    background: #22c55e;

    color: #fff;

    padding: 14px 20px;

    border-radius: 12px;

    font-weight: 700;

    cursor: pointer;
}