.dashboard-container {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
}

.dashboard-header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dashboard-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.dashboard-config {
    margin-bottom: 15px;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.dashboard-config h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.dashboard-widgets-row {
    display: flex;
    flex-wrap: wrap;
}

.dashboard-card {
    color: #fff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-height: 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dashboard-card .card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    opacity: 0.8;
    z-index: 10;
}

.dashboard-card .card-actions:hover {
    opacity: 1;
}

.dashboard-card .card-icon {
    font-size: 4em;
    opacity: 0.2;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.dashboard-card .card-content {
    z-index: 1;
    width: 100%;
}

.dashboard-card .card-title {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: normal;
    text-transform: uppercase;
    opacity: 0.9;
}

.card-module-tag {
    display: block;
    font-size: 0.7em;
    opacity: 0.7;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-card .card-value {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1;
}

.dashboard-card .card-loading {
    font-size: 2em;
    text-align: center;
}

@keyframes pulse-warning {
    0% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(192, 57, 43, 0); }
    100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

.dashboard-card.warning-pulse {
    animation: pulse-warning 2s infinite;
}
