.card {
    border-radius: 15px;
    margin-bottom: 20px;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.alert {
    border-radius: 8px;
}
.btn-light {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.input-group {
    max-width: 500px;
}

.bi {
    vertical-align: -.125em;
    margin-right: 0.25rem;
}
/* 按钮间距调整 */
.btn-group {
    display: flex;
    flex-wrap: nowrap;
}

/* 删除按钮悬停效果 */
.btn-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    transform: scale(1.05);
}

/* 操作列宽度调整 */
td:last-child {
    min-width: 200px;
}
.studio-description {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.studio-description h4 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.list-unstyled li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.list-unstyled li::before {
    content: "✓";
    color: #27ae60;
    margin-right: 0.8rem;
    font-weight: bold;
}

.table-hover tbody tr {
    transition: all 0.2s ease;
}

.table-hover tbody tr:hover {
    transform: translateX(5px);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.btn {
    transition: all 0.2s ease;
}

/* 审批按钮悬停效果 */
.btn-info:hover {
    background-color: #31d2f2;
    border-color: #25cff2;
}

/* 按钮图标对齐优化 */
.bi {
    vertical-align: text-top;
}

.admin-portal .btn-outline-dark {
    border-width: 2px;
    transition: all 0.3s ease;
}

.admin-portal .btn-outline-dark:hover {
    background-color: #212529;
    color: white !important;
    transform: translateY(-2px);
}

.admin-portal .bi-gear {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-right: 8px;
}

/* 审批搜索框样式 */
.input-group {
    max-width: 800px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* 空状态提示 */
.empty-state {
    opacity: 0.7;
    transition: opacity 0.3s;
}
.empty-state:hover {
    opacity: 1;
}

/* 状态标签 */
.badge {
    min-width: 70px;
}

/* 联系方式悬停效果 */
[href^="tel:"] {
    transition: color 0.2s;
}
[href^="tel:"]:hover {
    color: #0d6efd !important;
}

/* 操作按钮过渡动画 */
.btn-group .btn {
    transition: transform 0.2s, opacity 0.2s;
}
.btn-group .btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}