.rp-wrapper {
    overflow: hidden;
    margin: 20px 0;
}

.rp-toolbar {
    background: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e2e4e7;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.rp-dots {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rp-dots .title {
    display: inline-block;
    margin-left: 5px;
    font-weight: 500;
    font-size: 13px;
    color: #c3c3c3;
}

.rp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.rp-dot-red { background-color: #ff5f56; }
.rp-dot-yellow { background-color: #ffbd2e; }
.rp-dot-green { background-color: #27c93f; }

.rp-devices {
    display: flex;
    gap: 0;
    background: #f7f7f9;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #d1d1d6;
}

.rp-device-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 0;
    color: #646970;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rp-device-btn:hover, .rp-device-btn:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.rp-device-btn svg {
    width: 16px;
    height: 16px;}

.rp-device-btn:hover {
    background: #fff;
    color: #2271b1;
}

.rp-device-btn.active {
    background: #fff;
    color: #2271b1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.rp-actions {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rp-action-btn {
    display: inline-block;
    padding: 0 !important; 
    margin: 0 !important;
    line-height: 0;

}

.rp-action-btn svg {
    width: 18px;
    height: 18px;
}

.rp-action-btn:hover {
    color: #2271b1;
}

.rp-action-btn:focus {
    outline: none;
    box-shadow: none;
}

.rp-iframe-container {
    width: 100%;
    min-height: 600px; /* Default height */
    max-height: 100vh;
    margin: 0 auto;
    transition: width 0.3s ease;
    background: #fff;
    position: relative;
    box-sizing: border-box;
}

.rp-iframe-container iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    max-height: 100vh;
    border: none;
    display: block;
    border-radius: 12px;
    box-sizing: border-box;
    overflow: hidden;
	border: 1px solid #e2e4e7;
}

/* Device Widths */
.rp-iframe-container[data-view="desktop"] {
    width: 100%;
    border-left: none;
    border-right: none;
}

.rp-iframe-container[data-view="tablet"] {
    width: 768px;
}

.rp-iframe-container[data-view="mobile"] {
    width: 375px;
}

