/* 全局样式 */
body {
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* 房间表格样式 */
.room-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.room-table th, .room-table td {
    border: 1px solid #dee2e6;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
}

.room-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.room-table .floor-cell {
    background-color: #e9ecef;
    font-weight: bold;
}

.room-table .room-cell {
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.room-table .room-cell:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* 状态颜色 */
.status-red {
    background-color: #dc3545;
    color: white;
}

.status-yellow {
    background-color: #ffc107;
    color: black;
}

.status-blue {
    background-color: #0dcaf0;
    color: black;
}

.status-green {
    background-color: #198754;
    color: white;
}

/* 详情页样式 */
.room-info {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.room-info h2 {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.issue-card {
    margin-bottom: 15px;
    border-left: 5px solid #ccc;
}

.issue-card.red {
    border-left-color: #dc3545;
}

.issue-card.yellow {
    border-left-color: #ffc107;
}

.issue-card.blue {
    border-left-color: #0dcaf0;
}

.issue-card.fixed {
    opacity: 0.7;
}

.issue-photo {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 10px;
}

/* 表单样式 */
.form-container {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* 导出页面样式 */
.export-options {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .room-table {
        font-size: 12px;
    }
    
    .room-table th, .room-table td {
        padding: 5px;
    }
} 