#see-in-room-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0,0,0,0.7);
    font-family: 'Arial', sans-serif;
    overflow: auto;
}
.sir-content {
    background-color: #fff;
    width: 90%;
    max-width: 1100px;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}
.sir-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.sir-body {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.sir-left, .sir-right {
    flex: 1;
    min-width: 300px;
}
#sir-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    max-height: 200px;
    overflow-y: auto;
}
.sir-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: border 0.2s;
}
.sir-thumb.active {
    border-color: #007cba;
}
#sir-room-url {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.sir-or {
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
    color: #666;
}
#sir-process {
    display: inline-block;
    background-color: #007cba;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}
#sir-process:hover {
    background-color: #005a8f;
}
.sir-result-scroll, #sir-result {
    max-height: 500px;
    overflow: auto;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
}
.sir-result-scroll img, #sir-result img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid #ccc;
}
@media (max-width: 800px) {
    .sir-body {
        flex-direction: column;
    }
}
.sir-title {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;    
}
#sir-room-upload {
  display: none;
}
#sir-room-upload + label {
  display: inline-block;
  background-color: #007cba;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
#sir-room-upload + label:hover {
  background-color: #005a8f;
}
#sir-room-upload + label:active {
  background-color: #005a8f;
}
#sir-room-upload:valid + label {
  background-color: #007cba;
}