.alarm-module {
    padding: 20px;
    background-color: transparent;
    color: #c8dae6;
    min-height: 100%;
    font-family: 'Microsoft YaHei', sans-serif;
}

.alarm-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(79,195,247,0.15);
}

.alarm-title {
    font-size: 20px;
    color: #4fc3f7;
    font-weight: 700;
    letter-spacing: 1px;
}

.alarm-filter {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-item {
    display: flex;
    align-items: center;
}

.filter-item label {
    margin-right: 8px;
    font-size: 13px;
    color: #8eacbb;
}

.filter-item select {
    padding: 6px 12px;
    background: rgba(10,26,42,0.8);
    border: 1px solid rgba(79,195,247,0.3);
    color: #c8dae6;
    border-radius: 4px;
    min-width: 100px;
    transition: all 0.3s;
    font-size: 13px;
}

.filter-item select option {
    background: #0a1a2a;
    color: #c8dae6;
}

.filter-item select:focus {
    border-color: #4fc3f7;
    outline: none;
}

.filter-btn {
    padding: 7px 20px;
    background: #4fc3f7;
    color: #0a1a2a;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 13px;
}

.filter-btn:hover {
    background: #5fd3ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(79,195,247,0.3);
}

.alarm-container {
    min-height: auto;
    height: auto;
    max-height: none;
    background: rgba(15,28,60,0.6);
    border: 1px solid rgba(79,195,247,0.15);
    border-radius: 8px;
    overflow: visible;
    display: block;
}

.alarm-list {
    height: auto;
    display: block;
    min-height: auto;
}

.list-header {
    display: flex;
    padding: 10px 15px;
    background: rgba(15,28,60,0.9);
    font-weight: 600;
    border-bottom: 1px solid rgba(79,195,247,0.2);
    border-radius: 8px 8px 0 0;
    align-items: center;
    font-size: 13px;
    color: #4fc3f7;
}

.list-body {
    display: block;
    overflow-y: visible;
    background: transparent;
    max-height: none;
    padding: 0;
    margin: 0;
    min-height: auto;
}

.list-item {
    min-height: 44px;
    display: flex;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(79,195,247,0.08);
    align-items: center;
    transition: all 0.2s;
    font-size: 13px;
    color: #c8dae6;
    background: rgba(15,28,60,0.4);
}

.list-item:nth-child(even) {
    background: rgba(15,28,60,0.6);
}

.list-item:hover {
    background: rgba(79,195,247,0.08);
}

.list-item:last-child {
    border-bottom: none;
}

.status-badge {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 5px currentColor;
}

.status-0 {
    background-color: #f44336;
    color: #f44336;
}

.status-1 {
    background-color: #4caf50;
    color: #4caf50;
}

.level-1 {
    color: #ff9800;
    font-weight: 600;
}

.level-2 {
    color: #ff5722;
    font-weight: 600;
}

.level-3 {
    color: #f44336;
    font-weight: 600;
}

.handle-btn {
    padding: 4px 14px;
    background: #4fc3f7;
    color: #0a1a2a;
    border: none;
    border-radius: 4px;
    margin-right: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
    font-weight: 500;
}

.detail-btn {
    padding: 4px 14px;
    background: transparent;
    color: #4fc3f7;
    border: 1px solid rgba(79,195,247,0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
}

.handle-btn:hover {
    background: #5fd3ff;
    transform: translateY(-1px);
}

.detail-btn:hover {
    background: rgba(79,195,247,0.1);
    border-color: #4fc3f7;
}

.list-body::-webkit-scrollbar {
    width: 5px;
}

.list-body::-webkit-scrollbar-track {
    background: #0f1c3c;
}

.list-body::-webkit-scrollbar-thumb {
    background: #2a3d6e;
    border-radius: 3px;
}

.list-body::-webkit-scrollbar-thumb:hover {
    background: #3a4d7e;
}