        :root {
            --input-bg-color: rgba(255, 255, 255, 0.4);
            --border-color: rgba(255, 255, 255, 0.5);
            --focus-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
            --focus-border: rgba(59, 130, 246, 0.8);
        }

        body {
        font-family: "Manrope", sans-serif;
		background: #F9F9FB;
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        min-height: 100vh; 
        padding: 1rem 2rem; 
        margin: 0; 
        }

        .main-container {
			width: 80%!important;
        }
        
        .content-bg {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            border: 0.5px solid rgba(255, 255, 255, 0.4);
            padding: 2rem;
        }
        
        header {
            text-align: center!important;
            margin-bottom: 1rem;
            margin-top: -2rem!important;
            padding: 2em;
            line-height: 3vh;
        }

        h1 {
            font-size: 2.25rem!important;
            margin: 0;
            font-weight: 600!important;
            color: #232323!important;
        }

        #page-subtitle {
            font-size: 1rem;
            font-weight: 400;
            color: #232323!important;
            display: block;
            margin-bottom: 5px;
        }

        /* Form Elements & Input Groups */
        .input-group {
            margin-bottom: 1.25rem;
        }

        .input-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 800;
            color: #111;
        }

        input,
        textarea {
            width: 100%;
            padding: 12px!important;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
			background-color: #F9F9FB;
			border-radius: 15px;
        }

        input:focus,
        textarea:focus {
            outline: 1px solid #232323;!important;
            box-shadow: none!important;
        }
        
        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .product-section {
            margin-bottom: 3rem;
            margin-top: 1.5rem;
        }

        /* Button Styling */
        .btn {
            white-space: nowrap;
            background: transparent;
            font-weight: 400;
            font-size: 1rem;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: all 0.2s ease-in-out;
            border-radius: 50px;
            border: 1px solid #232323;
            padding: 10px 18px;
            color: #232323;
        }

        .btn:hover {
            background: #C0B69C;
            transform: translateY(-2px);
            cursor: pointer;
            color: #fff;
            border: 1px solid #C0B69C;
        }

        .btn-primary { 
        	width: 100%;
        	background: #50674a;
        	color: #fff;
        	border: none;
        }

        .btn-primary:hover { 
        	background: #C0B69C;
        	border: none;
        }

        .btn-danger {
            background: rgba(239, 68, 68, 0.8);
            color: white;
            border: 1px solid rgba(239, 68, 68, 0.1);
        }

        .btn-danger:hover {
            background: rgba(220, 38, 38, 1);
            color: white;
        }
        
        .buttons-below {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
        }
        
        .remove-button {
            position: absolute;
            top: 1rem;
            right: 1rem;
        }

        .output-box {
            white-space: pre-wrap;
            padding: 15px;
            margin-top: 0.5rem;
            border-radius: 8px;
            cursor: pointer;
            overflow-wrap: break-word;
            min-height: 150px;
        }
        
        .logo-placeholder {
			display: inline-block;
			vertical-align: middle;
			width: 50px;
			height: 25px;
		}
        .main-container {
			width: 100%;
			max-width: none;
			margin-top: 2rem;
		}
		
         ::-moz-selection { 
 			 color: #fff;
  			background: #9BA397;
		}

		::selection {
 			 color: #fff;
 			 background: #9BA397;
		}
