.info-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.sidebar {
    width: 200px;
    height: 100%;
    min-height: 450px;
    background: #eee;
    border-radius: 10px;
    margin-right: 20px;
}

.info-container {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    min-width: 300px;
    position: relative;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
    margin-right: 10px;
}

.title {
    font-size: 18px;
    font-weight: bold;
    color: #ccc;
}

.rect-field-sm {
    width: 30%;
    height: 40px;
    margin-bottom: 10px;
    background: #eee;
    border-radius: 5px;
}

.rect-field {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    background: #eee;
    border-radius: 5px;
}

.message-label {
    font-size: 14px;
    color: black;
    display: block;
    margin-bottom: 5px;
}

.info-container > div {
    position: relative;
}

.main-container {
    width: 400px;
    padding: 0.5rem;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.main-container .RadInput textarea {
    border: none;
    border-bottom: 1px solid lightgray;
    outline: none;
}

.sttb-container {
    justify-content: space-between;
    display: flex;
    align-items: center;
    margin-top: 8px;
    gap: 4px;
}

.sttb-container .description {
    font-size: 16px;
    color: #666;
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .info-wrapper {
        justify-content: center;
        padding: 15px;
    }

    .info-container {
        width: 100%;
        padding: 15px;
    }

    .rect-field-sm {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .info-container {
        padding: 10px;
    }

    .rect-field-sm {
        width: 100%;
    }
}
