.opa-actions-wrap {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 34px;
	margin: 16px 0;
	color: #fff;
	font-family: inherit;
}

.opa-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	color: #bdbdbd;
	cursor: pointer;
	padding: 4px 2px;
	font-size: 12px;
	font-weight: 500;
	transition: color .15s ease;
}
.opa-btn:hover {
	color: #fff;
}

.opa-icon {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.opa-icon svg {
	width: 24px;
	height: 24px;
}

/* My List: "+" icon by default, checkmark jab already list me ho */
.opa-icon-plus .opa-icon-check {
	display: none;
}
.opa-btn.is-active .opa-icon-plus svg:first-child {
	display: none;
}
.opa-btn.is-active .opa-icon-plus .opa-icon-check {
	display: block;
}

/* Rate: active hone par thumb highlight/fill ho jaata hai */
.opa-btn.is-active .opa-icon-thumb svg path {
	fill: #fff;
}
.opa-btn.is-active {
	color: #fff;
}

/* Report: submit hone ke baad thoda dim/disabled dikhe */
.opa-btn[data-action="report"].is-active {
	color: #e50914;
}

.opa-label {
	white-space: nowrap;
}

/* ---------- Report panel (chhota inline dropdown-jaisa box) ---------- */
.opa-report-panel {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: #1f1f1f;
	border: 1px solid #3a3a3a;
	border-radius: 8px;
	padding: 14px;
	width: 260px;
	z-index: 20;
	box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.opa-report-panel p {
	margin: 0 0 10px 0;
	font-size: 13px;
	color: #fff;
}
.opa-report-reason {
	width: 100%;
	background: #2b2b2b;
	color: #fff;
	border: 1px solid #444;
	border-radius: 4px;
	padding: 6px 8px;
	font-size: 13px;
	margin-bottom: 12px;
}
.opa-report-actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
}
.opa-report-actions button {
	font-size: 12px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
}
.opa-report-cancel {
	background: transparent;
	color: #bdbdbd;
}
.opa-report-cancel:hover { color: #fff; }
.opa-report-submit {
	background: #e50914;
	color: #fff;
}
.opa-report-submit:hover { background: #c50812; }

/* ---------- Toast (chhota confirmation message) ---------- */
.opa-toast {
	position: absolute;
	bottom: calc(100% + 10px);
	left: 0;
	background: rgba(20,20,20,.95);
	color: #fff;
	font-size: 12px;
	padding: 8px 14px;
	border-radius: 6px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(4px);
	transition: opacity .2s ease, transform .2s ease;
	white-space: nowrap;
}
.opa-toast.show {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- [ott_my_list] page ---------- */
.opa-my-list-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 14px;
	margin: 20px 0;
}
.opa-my-list-empty {
	color: #999;
	grid-column: 1 / -1;
}
.opa-my-list-item {
	position: relative;
	display: block;
	text-decoration: none;
	border-radius: 8px;
	overflow: hidden;
	background: #1a1a1a;
	aspect-ratio: 2 / 3;
	box-shadow: 0 4px 10px rgba(0,0,0,.35);
}
.opa-my-list-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.opa-my-list-remove {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(0,0,0,.7);
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
	z-index: 2;
}

@media (max-width: 480px) {
	.opa-actions-wrap { gap: 22px; }
	.opa-report-panel { width: 220px; right: -10px; }
}
