.collaborators-container {
    margin-top: 2rem;
    width: 100%;
}

.collaborators-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.collaborators-header h1 {
    margin: 0;
}

.collaborators-header p {
    color: #7f8c8d;
    margin: 0;
}

.collaborators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.collaborators-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    background-color: #fafafa;
}

.collaborators-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.collaborators-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.collaborators-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.collaborators-item strong {
    display: block;
}

.collaborators-badge {
    background-color: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 8px;
}

.collaborators-empty {
    color: #7f8c8d;
    text-align: center;
    padding: 20px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 1rem;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 1rem;
    color: #721c24;
}

.shops-table {
    width: 100%;
    border-collapse: collapse;
}

.shops-table thead tr {
    border-bottom: 2px solid #ddd;
}

.shops-table th {
    text-align: left;
    padding: 10px;
    font-weight: bold;
}

.shops-table tbody tr {
    border-bottom: 1px solid #eee;
}

.shops-table td {
    padding: 10px;
}

.shops-table a {
    text-decoration: none;
}

.shops-table a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .collaborators-grid {
        grid-template-columns: 1fr;
    }
}
