.example-container {
    padding: 20px;
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.example-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.example-container .iphone-preview {
    width: 591px;
    height: 1280px;
    background: white;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.example-container .iphone-preview::after,
.example-container .iphone-preview::before,
.example-container .iphone-preview > *::after,
.example-container .iphone-preview > *::before {
    display: none;
}

.example-container .status-bar {
    height: 88px;
    background: white;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px 0 42px;
    font-size: 14px;
    position: relative;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.example-container .time {
    position: static;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.5px;
    margin-left: 6px;
}

.example-container .right-items {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-top: 2px;
    margin-right: -30px;
    transform: translateX(-18px);
}

.example-container .status-icon {
    color: black;
}

.example-container .signal-icon {
    height: 32px;
    width: 40px;
    color: black;
    position: relative;
    top: -1px;
    margin-right: 0;
}

.example-container .wifi-icon {
    height: 24px;
    width: 32px;
    margin-right: 6px;
    color: black;
    display: inline-block;
}

.example-container .battery-icon {
    width: 48px;
    height: 26px;
    color: black;
    position: relative;
    top: -1px;
    margin-left: 0;
}

.example-container .success-image {
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    background: #fff;
}

.example-container .success-image img {
    width: 100%;
    height: auto;
}

.example-container .success-text {
    text-align: center;
}

.example-container .success-text img {
    width: 100%;
    height: auto;
    padding: 0 20px;
}

.example-container .info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 20px;
    border-bottom: none;
    font-size: 20px;
    align-items: flex-start;
}

.example-container .info-row:first-child {
    margin-top: 0;
    padding-top: 15px;
}

.example-container .info-row:last-child {
    padding-bottom: 15px;
}

.example-container .info-row .label {
    color: #999;
    padding-top: 3px;
    white-space: nowrap;
}

.example-container .info-row .value {
    color: #000;
    font-weight: 700;
    text-align: right;
}

.example-container .address-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
    color: #000;
    font-weight: 700;
    text-align: right;
    width: 100%;
    margin-left: 10px;
    gap: 2px;
}

.example-container .address-value div {
    width: 100%;
    text-align: right;
    margin: 0;
    padding: 0;
}

.example-container .bottom-bar {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: transparent;
    border-radius: 3px;
}

.example-container .control-panel {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.example-container .language-selector {
    margin-bottom: 20px;
}

.example-container .language-selector select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.example-container .language-selector select:focus {
    border-color: #000;
}

.example-container .form-group {
    margin-bottom: 20px;
}

.example-container label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.example-container input, .example-container select {
    width: 100%;
    padding: 10px;
    border: 1px solid #007AFF;
    border-radius: 4px;
    font-size: 16px;
    background: #fff;
    color: #333;
}

.example-container input:focus, .example-container select:focus {
    outline: none;
    border-color: #000;
    box-shadow: none;
}

.example-container .icon-select {
    display: flex;
    align-items: center;
}

.example-container .icon-select svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

#save-btn {
    width: 100%;
    padding: 12px;
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.2s;
}

#save-btn:hover {
    background: #0056b3;
}

.example-container .bottom-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
}

.example-container .bottom-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.example-container .back-btn {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
    color: #000;
}

.example-container .status-btn {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: #000;
    font-size: 16px;
    color: #fff;
}

.example-container .content-area {
    padding: 0;
    margin-top: 100px;
    position: relative;
    background: #fff;
    line-height: 1.2;
}

.example-container .network-icon {
    height: 24px;
    width: 32px;
    margin-right: 2px;
    color: black;
    display: inline-block;
}

.example-container .network-icon image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.example-container *,
.example-container .status-bar *,
.example-container .bottom-content * {
    border: none !important;
}

.example-container .error-message {
    color: #ff0000;
    font-size: 12px;
    margin-top: 5px;
}

.example-container .signal-icon image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.example-container .battery-icon image {
    width: 100%;
    height: 100%;
    object-fit: contain;
} 