.addinglist-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.stacked-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 6px;
}

.text-input {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
    width: 100%;
}

    .text-input:focus {
        border-color: #00a3ff;
        box-shadow: 0 0 0 1px rgba(0, 163, 255, 0.25);
    }

.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.25);
}

.input-helper {
    margin-top: 4px;
    font-size: 12px;
    color: #b91c1c;
}

.btn-row-right {
    margin-top: 6px;
    display: flex;
    justify-content: flex-end;
}

.videos-add-row {
    display: grid;
    grid-template-columns: 160px 1fr 1fr 64px;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid #dbe7ff;
    background: #f4f7ff;
    margin-bottom: 16px;
}

.btn-add-video {
    border-radius: 999px;
    background: linear-gradient(135deg, #00a3ff, #00c58e);
    color: #ffffff;
    border: none;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(16, 185, 129, 0.35);
}

.videos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-item {
    display: grid;
    grid-template-columns: 1fr 70px;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.video-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.host-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f4f8ff;
    color: #0f172a;
    font-size: 12px;
    border: 1px solid #dbeafe;
    width: fit-content;
}

.video-title {
    font-weight: 600;
    font-size: 15px;
    color: #111827;
}

.video-url {
    font-size: 13px;
    color: #0ea5e9;
    word-break: break-all;
    text-decoration: none;
}

.video-url:hover {
    text-decoration: underline;
}

.icon-btn {
    border-radius: 999px;
    border: none;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #eef2ff;
    color: #111827;
    box-shadow: 0 6px 14px rgba(148, 163, 184, 0.45);
    font-size: 18px;
    padding: 0;
}

    .icon-btn:hover {
        filter: brightness(0.97);
    }

.icon-btn-danger {
    background: #fee2e2;
    color: #b91c1c;
    box-shadow: none;
}

.action-cell {
    text-align: center;
}

.empty-cell {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
    padding: 14px;
    border-radius: 12px;
    border: 1px dashed #d1d5db;
    background: #f9fafb;
}

