:root {
	--folder-img: url(../../../images/themes/titanpointe/EmptyFolder.svg);
	--earmark-img: url(../../../images/themes/titanpointe/Earmark.svg);
	--default-icon-color: #202020;
	--earmark-button-color: #a8a8a8;
}
	.profile-container {
		position: relative;
		width: 100%;
		height: 1000px;
		min-width: 1500px;
	}

	.profile-folder-img {
		width: 100%;
		height: 1000px;
		display: block;
		background-image: var(--folder-img);
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		filter: drop-shadow(20px 20px 15px rgb(0 0 0 / 0.5));
	}
	
    .profile-overlay {
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: center;
	  gap: 30px;
    }

    .profile-earmark-container {
		position: absolute;
		left: 40px;
		top: 70px;
		display: flex;
		flex-direction: column;
    }

	.earmark-button {
		width: 60px;
		height: 75px;
		position: relative;
		background: var(--earmark-img) no-repeat center center;
		background-size: contain;
		background-color: transparent;
		border: none;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: left;
		filter: drop-shadow(-4px 4px 10px rgba(0, 0, 0, 0.5));
		transition: transform 0.2s ease;
		padding: 0px;
		fill: var(--earmark-button-color);

	}

	.earmark-button:hover {
	  transform: translateX(-8px);
	}

	.earmark-button:active {
	  transform: translateX(-8px);
	}

	.earmark-button.active {
	  transform: translateX(-8px);
	}

	/* Position buttons with overlap */
	.earmark-button:nth-child(1) { margin-top: 0; }
	.earmark-button:not(:first-child) { margin-top: -15px; } /* controls overlap */

	/* Add overlap for all but the first */
	.profile-earmark-column .earmark:not(:first-child) {
		margin-top: -15px;
	}


	.earmark-icon {
		width: 40%; /* or a fixed size like 20px */
		height: auto;
		pointer-events: none;
		z-index: 1; /* Ensure it's above background */
		color: var(--default-icon-color); /* fallback/base */
		margin-left: 7px;
	}

	.profile-document-wrapper {
		padding: 0px;
		margin: 0; /* let flex gap handle spacing */
		width: 43%; /* leave room for the gap */
		aspect-ratio: 1/1.4142;
	}

    .profile-page-l {
		background: var(--top-letter-color);
		box-shadow: 3px 3px 7px rgba(0,0,0,0.3);
		padding: 40px;
		position: relative;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
    }
    .profile-page-l:before, .profile-page-l:after {
		content: "";
		height: 100%;
		position: absolute;
		width: 100%;
		z-index: -1;
     }
    .profile-page-l:before {
		background: var(--sub-letter-color1);
		box-shadow: 3px 3px 7px rgba(0,0,0,0.3);
		left: -5px;
		top: 4px;
		transform: rotate(-1.2deg);
    }
    .profile-page-l:after {
		background: var(--sub-letter-color2);
		box-shadow: 3px 3px 7px rgba(0,0,0,0.3);
		right: -3px;
		top: 1px;
		transform: rotate(1.4deg);
	}	
    .profile-page-r {
		background: var(--top-letter-color);
		box-shadow: 3px 3px 7px rgba(0,0,0,0.3);
		padding: 40px;
		position: relative;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
    }
    .profile-page-r:before, .profile-page-r:after {
		content: "";
		height: 100%;
		position: absolute;
		width: 100%;
		z-index: -1;
     }
    .profile-page-r:before {
		background: var(--sub-letter-color1);
		box-shadow: 3px 3px 7px rgba(0,0,0,0.3);
		left: -5px;
		top: 4px;
		transform: rotate(-1.8deg);
    }
    .profile-page-r:after {
		background: var(--sub-letter-color2);
		box-shadow: 3px 3px 7px rgba(0,0,0,0.3);
		right: -3px;
		top: 1px;
		transform: rotate(1.2deg);
	}	