/* Backlink Dofollow Manager Styles */
.backlinks-container {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.backlinks-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2271b1;
}

.backlinks-header h3 {
    margin: 0;
    color: #2271b1;
}

.backlinks-list {
    column-count: 3;
    column-gap: 20px;
    padding: 0;
    list-style: none;
}

.backlinks-list li {
    margin-bottom: 8px;
    break-inside: avoid;
    padding: 5px 10px;
    background: white;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.backlink-item {
    text-decoration: none;
    color: #2c5282;
    font-size: 14px;
    transition: color 0.3s;
}

.backlink-item:hover {
    color: #1a365d;
    text-decoration: underline;
}

.backlinks-grid {
    margin-top: 10px;
}

.backlink-grid-item {
    padding: 10px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.backlink-grid-item a {
    display: block;
    text-decoration: none;
    color: #2d3748;
    font-size: 13px;
    word-break: break-all;
}

.backlink-grid-item a:hover {
    color: #1a202c;
}

.backlinks-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.backlinks-table th,
.backlinks-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.backlinks-table th {
    background: #2271b1;
    color: white;
}

.backlinks-table tr:nth-child(even) {
    background: #f7f7f7;
}

.backlink-count {
    padding: 10px 15px;
    background: #e8f4fd;
    border: 1px solid #b6d4fe;
    border-radius: 4px;
    color: #0c5460;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .backlinks-list {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .backlinks-list {
        column-count: 1;
    }
}