﻿.subs-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subs-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
    transition: box-shadow 0.15s;
}

    .subs-card:hover {
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

.subs-card-link {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.subs-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f0f0f0;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .subs-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.subs-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.subs-since {
    font-size: 12px;
    color: #aaa;
    margin-top: 2px;
}

.myads-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

    .myads-action-btn:hover {
        background-color: #f5f5f5;
        border-color: #ccc;
    }

.myads-action-danger {
    border-color: #e53935;
    background-color: transparent;
    color: #e53935;
}

    .myads-action-danger:hover {
        background-color: #e53935;
        border-color: #e53935;
        color: #fff;
    }
