body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.iframe-wrapper {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    display: inline-block;
    background-color: #222;
    border-radius: 8px;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.size-display {
    position: absolute;
    top: 8px;
    left: 8px;
    color: orange;
    font-size: 10px;
    z-index: 10;
}

.info-wrapper {
    flex-grow: 1;
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

textarea {
    width: 100%;
    height: 40px;
    border: 1px solid #444;
    background-color: #333;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    border-radius: 4px;
    box-sizing: border-box;
    resize: none;
}

textarea:focus {
    outline: none;
    border-color: #007bff;
}

.action-link {
    padding: 10px;
    text-decoration: none;
    color: #007bff;
    border: 1px solid #555;
    text-align: center;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.action-link:hover {
    background-color: #444;
    color: #fff;
}

.divider {
    width: 7px;
    cursor: ew-resize;
    background-color: #555;
    height: 100%;
    margin-left: 10px;
    margin-right: 10px;
}

.divider:hover {
    background-color: #777;
}

.action-link {
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
    color: #007bff;
    border: 1px solid #555;
    text-align: center;
    border-radius: 4px;
    font-size: 13px;
}

.action-link:hover {
    background-color: #444;
    color: #fff;
}

.env-indicator {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #555;
    color: #007bff;
    display: inline-block;
    margin-left: auto;
}

.env-local {
    background-color: #f8f9fa;
    color: #000;
    cursor: default;
}

.env-dev {
    background-color: #28a745;
    color: #fff;
    cursor: pointer;
}

.env-prod {
    background-color: #dc3545;
    color: #fff;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 5px;
}

.header-table td {
    vertical-align: middle;
}