/* FF_IFM Main Styles */
.ff-ifm-workspace {
    padding: 20px;
}

.ff-ifm-header {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
}

.ff-ifm-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ff-ifm-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ff-ifm-metric-value {
    font-size: 2rem;
    font-weight: bold;
    color: #3498db;
}

.ff-ifm-metric-label {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Dashboard styles */
.dashboard-widget-group {
    margin-bottom: 30px;
}

.widget {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Number card styles */
.number-widget {
    text-align: center;
    padding: 20px;
}

.number-widget .widget-title {
    font-size: 14px;
    color: #8D99A6;
    margin-bottom: 10px;
}

.number-widget .widget-value {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
}

/* Chart styles */
.dashboard-chart {
    min-height: 300px;
}

/* Workspace improvements */
.workspace-sidebar-item.selected {
    background-color: #f0f4f7;
    border-left: 3px solid #3498db;
}

.desk-sidebar .standard-sidebar-section {
    margin-bottom: 20px;
}

/* Quick action buttons */
.ff-ifm-quick-action {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background: #3498db;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.ff-ifm-quick-action:hover {
    background: #2980b9;
    color: white;
    text-decoration: none;
}