/* 自定义样式 */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border-radius: 10px;
    border: none;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.alert {
    border-radius: 8px;
}

.warning{
    color:#842029;
background-color:#79cda7;
border-color:#f5c2c7;
text-align:center;
padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 6px;
    
}
.warning .warning-link{color:#6a1a21}
.warning-light{color:#636464;background-color:#79cda7;border-color:#fdfdfe}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.worklist{
    font-size: 14px;
    margin: 8px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.worklist:hover {
  background-color: #ced4da;
  box-shadow: 0 6px 6px rgba(0,0,0,0.2);
  transform: translateY(-5px);
}
.worklist .mc{
    background-color: #f8f9fa;
    font-size: 12px;
    padding: 6px;
    float: right;
    margin-right: 12px;
    border-radius: 6px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}
.worklist .run{
     background-color: #f8f9fa;
    font-size: 12px;
    padding: 6px;
    float: right;
    margin-right: 12px;
    border-radius: 6px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.worklist .mc:hover{
     color: red;
}
.worklist .run:hover{
     color: red;
}


/* 简洁加载遮盖 */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

/* 旋转动画 */
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #e0e0e0;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.loader-dots {
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

.loader-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3498db;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loader-dots span:nth-child(1) { animation-delay: -0.32s; }
.loader-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}