.mediapr-body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
}

.mediapr-dashboard {
    max-width: 1200px;
    margin: 0 auto;
}

.mediapr-dashboard h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.dashboard-item {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.dashboard-item h3 {
    margin-top: 0;
    font-size: 1.2em;
}

.dashboard-item p {
    flex-grow: 1;
    font-size: 0.9em;
    color: #666;
}

.icon-wrapper {
    text-align: center;
    margin: 20px 0;
}

.icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: #007bff;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e6f3ff;
    color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #cce5ff;
}

.help-section {
    margin-top: 40px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.help-section h3 {
    color: #6c5ce7;
    margin-bottom: 10px;
}

.avatar-group {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 -5px;
    border: 2px solid white;
}

.button.primary {
    background-color: #6c5ce7;
    color: white;
}

.button.primary:hover {
    background-color: #5b4bc7;
}