﻿.actions-toggle {
	display: inline-flex;
	position: fixed;
	right: 30px;
	top: 20px;
	background: var(--ek-red);
	color: #fff;
	border: none;
	padding: 0.6rem;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	z-index: 1003;
	cursor: pointer;
}

.actions-drawer {
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	width: 300px;
	max-width: 85%;
	background: #fff;
	box-shadow: -8px 0 24px rgba(0,0,0,0.12);
	transform: translateX(110%);
	transition: transform 220ms ease-in-out;
	z-index: 1004;
	padding: 1rem;
	box-sizing: border-box;
	border-left: 1px solid #e5e7eb;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

	.actions-drawer.open {
		transform: translateX(0);
	}

	.actions-drawer .drawer-header {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.actions-drawer .close-btn {
		background: transparent;
		border: none;
		font-size: 1.25rem;
		cursor: pointer;
	}

	.actions-drawer .drawer-body {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
	}

		.actions-drawer .drawer-body .btn-primary {
			width: 100%;
			padding: 0.6rem 0.8rem;
			border-radius: 8px;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 0.6rem;
			box-sizing: border-box;
		}

.actions-backdrop {
	display: none;
}

	.actions-backdrop.visible {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,0.35);
		z-index: 1002;
	}

.action-icon {
	margin-right: 0.5rem;
	display: inline-flex;
}
