/* Matches the provided HTML colors & layout exactly */
.e8is-esim-wrap * { box-sizing: border-box; }

.e8is-esim-wrap {
    font-family: Poppins, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
}

.e8is-esim-wrap .steps-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.e8is-esim-wrap .step { display: none; }
.e8is-esim-wrap .step.active { display: block; }

.e8is-esim-wrap .step-number {
    font-size: 1.5rem;
    color: #80bd38;
    font-weight: bold;
    margin-bottom: 10px;
}

.e8is-esim-wrap .step-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.e8is-esim-wrap .input-field-custom-zain {
    width: 100% !important;
    padding: 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    margin-bottom: 15px !important;
    background-color: #fff !important;
}

.e8is-esim-wrap .compatibility-result {
    color: #80bd38;
    font-weight: bold;
    margin-top: 10px;
}

.e8is-esim-wrap .camera-preview-container {
    position: relative;
    width: 100%;
    height: 200px;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.e8is-esim-wrap .camera-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.e8is-esim-wrap .camera-mode {
    position: absolute;
    top: 10px;
    width: 100%;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    font-size: 1rem;
    font-weight: bold;
    z-index: 2;
}

.e8is-esim-wrap .fingerprint-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px dashed rgba(128, 189, 56, 0.8);
    background: rgba(128, 189, 56, 0.2);
    z-index: 1;
}

.e8is-esim-wrap .buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.e8is-esim-wrap .button {
    padding: 10px 20px;
    color: #fff;
    background-color: #80bd38;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.e8is-esim-wrap .button:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

.e8is-esim-wrap p { margin: 10px 0 0; }
