        .cont-form-cot {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
			font-family: "ABeeZee", sans-serif;
			color: #092a48;
        }
		
		
		.cont-form-cot th{
           font-family: "Alkatra", system-ui;
		   color: #6387ba;
		   font-size:1rem;
        }
		
			.cont-form-cot td{
           font-family: "ABeeZee", sans-serif;
		   color: #092a48;
		   font-size:0.8rem;
        }

        .cont-form-cot h2  {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #6387ba;
            border-left: 4px solid var(--amd-blue);
            padding-left: 15px;
			font-family: "Alkatra", system-ui;
        }
		
		.cont-form-cot option{
           font-family: "ABeeZee", sans-serif;
		   color: #092a48;
		   font-size:0.8rem;
        }

        .legend-box {
            background-color: #e9ecef;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 25px;
            font-size: 0.85rem;
            line-height: 1.5;
            color: #495057;
        }

        .device-icons, .peripheral-icons, .software-icons {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
            gap: 12px;
            margin-bottom: 25px;
        }

        .device-icon, .peripheral-icon, .software-icon {
            height: 100px;
            background-color: #fff;
            border: 1px solid #dee2e6;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
            padding: 5px;
        }

        .emoji-icon {
            font-size: 2rem;
            margin-bottom: 5px;
        }

        .device-icon span, .peripheral-icon span, .software-icon span {
            font-size: 0.75rem;
            font-weight: 600;
            line-height: 1.2;
        }

        .device-icon:hover, .peripheral-icon:hover, .software-icon:hover {
            border-color: var(--amd-blue);
            background-color: #f0f7ff;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }

        .remove-button {
            background-color: #ff4d4d;
            color: white;
            border: none;
            border-radius: 6px;
            width: 32px;
            height: 32px;
            transition: 0.2s;
            font-weight: bold;
        }

        .remove-button:hover {
            background-color: #dc3545;
            transform: scale(1.1);
        }

        .form-check-input:checked {
            background-color: var(--amd-blue);
            border-color: var(--amd-blue);
        }

        #sendOverlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
        }

        @media print {
            .device-icons, .peripheral-icons, .software-icons, .btn-primary-custom, .remove-button, .license-toggle-container, .legend-box {
                display: none !important;
            }
            body { background-color: white; padding: 0; }
            .cont-form-cot { box-shadow: none; border: 1px solid #eee; }
        }