﻿/* Covers the player intentionally */
.cf-sheet {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

	.cf-sheet[aria-hidden="false"] {
		display: block;
	}

	.cf-sheet .scrim {
		position: absolute;
		inset: 0;
		background: rgba(0,0,0,.45);
	}

	.cf-sheet .panel {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		background: #141820;
		border-radius: 16px 16px 0 0;
		box-shadow: 0 -20px 40px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.06);
		transform: translateY(100%);
		transition: transform .3s cubic-bezier(.4,0,.2,1);
		padding: 12px;
	}

	.cf-sheet[aria-hidden="false"] .panel {
		transform: translateY(0);
	}

	.cf-sheet header {
		display: grid;
		grid-template-columns: 48px 1fr auto;
		gap: .6rem;
		align-items: center;
		padding: 4px 4px 8px;
	}

		.cf-sheet header .thumb {
			width: 48px;
			aspect-ratio: 1/1;
			border-radius: 6px;
			background: #151922 center/cover no-repeat;
		}

		.cf-sheet header .title {
			font-weight: 600;
			font-size: .95rem;
		}

		.cf-sheet header .artist {
			color: #9CA3AF;
			font-size: .78rem;
		}

		.cf-sheet header .close {
			border: 0;
			background: transparent;
			color: #E5E7EB;
			padding: .35rem;
			border-radius: 6px;
		}

	.cf-sheet ul.actions {
		list-style: none;
		margin: 6px 0 4px;
		padding: 0;
	}

		.cf-sheet ul.actions li {
			display: flex;
			align-items: center;
			gap: .6rem;
			padding: .65rem;
			border-radius: 10px;
			cursor: pointer;
		}

			.cf-sheet ul.actions li:hover {
				background-color: rgba(255,255,255,.06);
			}

	.cf-sheet i[class^="icon-"] {
		display: inline-block;
		line-height: 1;
		font-size: 1rem;
	}
