/* Make the overall playlist item more spacious */

/* To remove any unwanted borders when the list items are removed or hidden */
.list-group {
	border-radius: 0.25rem; /* Ensure that the list itself also retains its border radius */
	overflow: hidden; /* Prevent border clipping */
}

.list-group-item {
	padding: 8px;
	margin-bottom: 0;
	/* Ensure that the list items retain rounded corners */
	border-radius: 0.25rem; /* Apply the rounded corner to each li */
}

.list-group-item:nth-child(odd) {
	background-color: #f8f9fa; /* Light grey */
}

/* Ensure the notes have uniform height, width, and are large text */
textarea.note {
	width: 100%; /* Fill the column */
	/* height: 150px; Uniform height */
	font-size: 1.25rem; /* Larger text */
	padding: 10px;
	border-radius: 8px; /* Slightly rounded corners */
	border: 1px solid #ccc;
	resize: none; /* Prevent manual resizing */
	overflow: hidden !important; /* Hide the scrollbar */
}

/* Optional: Add a border or shadow for better visibility */
textarea.note:focus {
	border-color: #007bff;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Add some space between the track info and the notes */
.row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Small text for the track info */
small {
	font-size: 0.9rem;
}

.track-info {
	font-size: 1.25rem; /* Larger text */
}

.toggle-visibility {
	margin-left: 10px;
	padding: 5px 10px;
}

/* Add a class for hiding while keeping border */
.hidden-track {
	visibility: hidden;  /* Keep the element in the layout but hide it */
	position: absolute;  /* Make it non-interactive */
}
