.jmswp-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.jmswp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
}

.jmswp-header h2 {
    margin: 0;
    color: #2c3e50;
}

.jmswp-header a {
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
}

.jmswp-section {
    margin-bottom: 30px;
}

.jmswp-section h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    border-left: 4px solid #3498db;
    padding-left: 12px;
}

.jmswp-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.jmswp-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.jmswp-bar {
    background: #ecf0f1;
    border-radius: 10px;
    height: 25px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.jmswp-bar div {
    border-radius: 10px;
    height: 100%;
    color: #fff;
    padding-left: 10px;
    line-height: 25px;
    font-size: 12px;
    font-weight: bold;
    transition: width 0.3s;
}

.jmswp-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.jmswp-table th {
    background: #34495e;
    color: white;
    padding: 12px;
    text-align: left;
}

.jmswp-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #ecf0f1;
}

@media (max-width: 768px) {
    .jmswp-dashboard {
        padding: 10px;
    }
    .jmswp-table th,
    .jmswp-table td {
        padding: 8px;
        font-size: 12px;
    }
}