.irvv-status {
    margin-top: 1em;
    padding: 0.8em 1em;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 0.9em;
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
}
.irvv-status.irvv-status-error {
    background-color: #ffe0e0;
    border-color: #ffc0c0;
}
.irvv-status.irvv-status-success {
    background-color: #e0ffe0;
    border-color: #c0ffc0;
}
.irvv-badge {
    display: inline-block;
    padding: 0.3em 0.6em;
    border-radius: 3px;
    font-weight: bold;
    margin-right: 0.8em;
    color: #fff;
}
.irvv-badge-ready {
    background-color: #5cb85c;
}
.irvv-badge-error {
    background-color: #d9534f;
}
.irvv-badge-success {
    background-color: #5bc0de;
}
.irvv-msg {
    flex-grow: 1;
    color: #333;
}
.irvv-progress {
    width: 100px;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-left: 1em;
    display: none; /* Hidden by default */
}
.irvv-progress .irvv-bar {
    height: 100%;
    width: 0%;
    background-color: #007bff;
    transition: width 0.3s ease-in-out;
}
.irvv-result {
    margin-top: 1em;
    padding: 1em;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
    display: none; /* Hidden by default */
}
.irvv-result.irvv-status-error {
    border-color: #d9534f;
    background-color: #fdf5f5;
}
.irvv-result.irvv-status-success {
    border-color: #5cb85c;
    background-color: #f5fdf5;
}
.irvv-result ul {
    margin-left: 1.5em;
    list-style-type: disc;
}
.irvv-result p {
    margin-bottom: 0.5em;
}
.irvv-fill {
    margin-top: 1em;
    padding: 0.8em 1em;
    border-radius: 5px;
    background-color: #e9f7fe;
    border: 1px solid #b3e0ff;
    color: #0056b3;
    display: none; /* Hidden by default */
}
.irvv-dbg {
    margin-top: 1.5em;
    padding: 1em;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 5px;
    display: none; /* Hidden by default */
}
.irvv-dbg p {
    margin-bottom: 0.5em;
}
.irvv-dbg-chars {
    font-size: 0.8em;
    color: #777;
}
.irvv-dbg textarea {
    width: 100%;
    height: 200px;
    font-family: monospace;
    font-size: 0.85em;
    border: 1px solid #ddd;
    padding: 0.5em;
    box-sizing: border-box;
    resize: vertical;
}
.irvv-inline-err {
    color: #d9534f;
    font-weight: bold;
    margin-bottom: 1em;
}
.irvv-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    z-index: 99999;
    display: none;
}
.irvv-warn {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
    padding: 0.5em;
    border-radius: 4px;
    margin-top: 1em;
}
