/* POPUP CONTAINER */
#smartskin-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* OVERLAY */
.smartskin-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* MODAL */
.smartskin-modal {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 420px;
    border-radius: 10px;
    padding: 20px;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* CAMERA */
#camera-preview {
    width: 100%;
    border-radius: 10px;
    background: #000;
}

/* BUTTONS */
.camera-controls button,
#smartskin-submit,
#smartskin-voice {
    background: #d2a679; /* nude/light brown */
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.camera-controls {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

/* TEXTAREA */
#smartskin-input {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* ACTION BUTTONS */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}