/* ================================
    📌 필터 카드 디자인
================================ */
.filter-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.filter-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.filter-title i {
    font-size: 22px;
    margin-right: 8px;
    color: #2563eb;
}

/* 입력 요소 */
.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.form-select,
.form-control {
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    .form-select,
    .form-control {
        padding: 14px;
        font-size: 1rem;
    }
}

/* ================================
    📌 카드 스타일 유지 + 개선
================================ */
.asset-card {
    cursor: pointer;
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    border: 2px solid transparent;
    transition: 0.18s ease;
     height: 100%;          /* 부모 높이에 맞춰 카드 높이를 동일하게 */
    display: flex;
    flex-direction: column;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.asset-card:hover {
    border-color: #1e90ff;
    background: #f8fbff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30,144,255,0.25);
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
}

.asset-list {
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
}

.asset-img {
    max-width: 260px;
    object-fit: contain;
}

.add-asset-btn {
    border: 1px dashed #2563eb;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    color: #2563eb;
    font-weight: 600;
}
.add-asset-btn:hover {
    background: #eef4ff;
}

.info-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0px;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.info-text-title {
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
}

.info-section {
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 22px;
}

.info-text-value {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
}
.info-select_box {
    height: 42px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    line-height: 28px !important; /* 텍스트 중앙 유지 */
}
.info-input_box{
    height: 42px !important;
}

.section-line {
    border-bottom: 1.5px solid #e5e7eb;
}

.section-indent {
    padding-left: 1.5rem; /* 부서정보 카드 padding 20px 맞춤 */
}

.spec-table th {
    width: 35%;
    white-space: nowrap;
}

.room-top .company-name {
    font-size: 16px;
    font-weight: 700;
    color: #0d6efd;
}

.room-number {
    font-size: 22px;
    font-weight: 800;
    margin: 6px 0 12px 0;
}

/* disabled처럼 보이게 */
.fake-disabled {
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    display: block;
    padding: .375rem .75rem;
    cursor: not-allowed;
    pointer-events: none;
    line-height: 1.8;               /* 글자 세로 중앙 */
}